Maybe you will be able to help out. I am using makeString in one of my flows and I need a carriage return as the separator so the text can be placed on newlines everytime in the string. I put in “\r” as the separator but in the output I get \r as string. Anyone knows why am I not getting the carriage return?
Maybe you can set the value of the separator by opening the large editor(right click on the textbox and select “open large editor…”) and pressing enter.
One note on both approaches: often you want to pick a platform-independent separator. Using the line.separator property will mean that when run on Windows you’ll get one separator (\r\n) while on Unix you’ll get another (\n). This may or may not be an issue depending on 1) how the file is processed by the recipients; 2) if the solution will run on both platforms or changes at some point.
Also, the reason \r didn’t work is because character escapes are not supported by makeString.