Adding line break in a string variable?

0
Does anyone know how to add line breaks when using the Create String  Variable in a microflow? For Docusign I need to send a Full Address text field, which should be formatted using line breaks. I have tried to build my string using \r\n, only it’s not recognized. (in https://stackoverflow.com/questions/28349524/how-to-wrap-text-for-a-data-field-tag-in-docusign it is mentiond for creating tabs, i’d expected it works on other input too) how to add chr(10) + cha​​​​​​r(13) to a string in Mendix create variable??  
asked
1 answers
4

answer is similar to https://forum.mendix.com/link/questions/90904

 

Solution was to open a quote on one line and close it on the next, resulting in the line break being generated:

$Proposal/AuthorFullName + '
' + $Proposal/AuthorStreetAddress + '
' + $Proposal/AuthorPostalCode + ' ' + $Proposal/AuthorCity + '
' + $Proposal/AuthorCountry

 

I would like a special function called AddLineBreak that would insert this for better readability of code.

 

answered