MultiLine TextBox Formatting Issue

Hi there,

I’m having a slight formatting issue with the Data-Shapes MultiLine Texbox UI that has me stumped.

Im trying to create pre-formatted multi-line string data that has returns (\r) included in it. When I manually assemble the string in a code block, I can get the format I desire. This is shown in the first image below:

When I try to build a formula driven string, the UI doesn’t include the returns I am looking for, instead showing this:

The watch nodes seem to indicate that the same data is being fed to the multiline input form, but something isn’t working. You can see the raw code below, with the code block above trying to programmatically generate the string vs the code block below where I manually type it out.

I also tried adding an additional \r to the string at each desired return which doesn’t work either.

Any thoughts on what I might be missing?

Try appending /r/n as a possible work-around.

1 Like

Thank you, that did the trick!