SL12345
2 years agoNew Contributor III
Split string into rows and save it to file row by row, not in one string
Lets say i have this input string in my mapper:
"Mercedes;6658;TypeS;2022;\r\nAudi;5558;TypeA8;2022;Diesel"
How can i save it to csv file as single rows? in this example it should be:
Mercedes;6658;TypeS;2022;
Audi;5558;TypeA8;2022;Diesel
I've tried myString.split('\r\n') it creates two strings which i can not export/save as file because its list, or these strings were comma separated and stored as one line in export file
Thank you for your help
Try with this one.