Add paragraphs in a string

Hi everyone,

I want to send a long string as an Email with knime. This string needs to be structured so I would like to add paragraphs to the string.

For example:
User1XXXXX;User2XXXXX;User3XXXXX

should look like

User1XXXX;

User2XXXX;

User3XXXX;

For my usecase it is not feasible to split the string into multiple rows it must stay in one row.

Can anybody help me with that? Thank you very much.

Best Ole

Hello @Ole_Buhl,

you can try String Manipulation with replace() function.

replace($column1$,";" ,";\n" )

Br,
Ivan

2 Likes

Hello @ipazin,

thank you for yor help. This solves my problem!

Best Ole

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.