Converting multiline string to single line string in mendix.

1
I want to convert a multiline string to single line string in microflow. Is there any way in mendix that i can achieve this? If anyone knows please help me.
asked
2 answers
1

A line break in Mendix is a single quote then type the enter (return) key and then another single quote. Example: '

'

If you want to add strings together with the linefeed in between you could do it like this $string1 + '

' + $string2

Regards,

Ronald

 

answered
0

Hi Bidisha,

have you tried adding these multi line strings into a single String variable and display?

 

answered