How can I get a line break in a String Variable with

0
  I need line breaks wherever there is a '*',is there any functions or tag to get it!?? Kindly help me out with this Thanks in advance!!
asked
3 answers
2

Hi Vijay,

 

replaceAll($ActualString, '*', '\n')

 

Hope it helps!

Thanks & Regards,

Manikandan K

answered
1

See the docs here: https://docs.mendix.com/refguide/string-function-calls/ You could use the replace all action to find all the asterix and replace it an asterix with linefeed.

 

Regards,

Ronald

 

answered
0

Hi Vijay,

 

You can use html tag for line break 

just use this ‘<br/>’ .

answered