Hi, I am writing a flow that appends lines of text to a file (using the action Write to File) and I would like to separate each line with a carriage return. I have not found a way to do this - is there a character string I can put in the text field that would insert a carriage return or new line?
Thank you.
skip
Send CR to a text file
Moderator: Martin
Re: Send CR to a text file
Hi,
You could either add a short inline script with {"\n"} or {"\r\n"} which will be replaced by a newline when the action is executed or you could manually add a newline by pressing enter in the text area.
Regards,
Martin
You could either add a short inline script with {"\n"} or {"\r\n"} which will be replaced by a newline when the action is executed or you could manually add a newline by pressing enter in the text area.
Regards,
Martin
-
- Posts: 82
- Joined: 13 Jan 2014 21:39
Re: Send CR to a text file
{"\n"} is just what I was looking for. Thanks for the quick reply - as always!
skip
skip