Is there a way to remove line breaks from a string in C2?
For example: I'm importing text from a file using AJAX that looks like this:
name1|001|Dialog 1|
name1|002|Dialog 2|
name2|001|Dialog 3|
When it's saved to a string variable I want it to become this:
name1|001|Dialog 1|name1|002|Dialog 2|name2|001|Dialog 3|
I'm familiar with the "replace" system event but I don't know how to have it search for a linebreak. I tried newline and "/n" with no luck.
Thanks.