Linebreak in a string for csv export

2
Hi guys, This question is asked before, but because it did not work for me i have to ask it again. I generate a string, make from that string a file and then open it is a CSV. Now i see that the lines are all together. I want to break the line after finishing a CSV record. I tried: '/n' , '\n', '"/n"', '"\n"'....   So how can I break the lined at the end and begin with a new line below record 1?
asked
2 answers
4

A linebreak in a String variable is not that straight-forward, indeed. It can be done like this:

 

 

answered
0

try '\r\n'

answered