CSV - Are there any accepted special characters?

  • Thread starter Thread starter ivotkl
  • Start date Start date
I

ivotkl

Hello everyone. Since none of the other 3 threads found containing CSV match my question, I'm here writing to you with a simple question.

I am using a web app that lets you import CSV files to create data.

I have created a file that looks like this:

Code:
criteria1;criteria2;criteria3;criteria4
data1,data2,data3,data4
data1,data2,data3,data4
data1,data2,data3,data4
Now, I'd like to split data 2 into more than one line in the resulting output. Result should look like this:

Code:
criteria1;criteria2;criteria3;criteria4
data1;da
ta
2;data3;data4
data1;da
ta
2;data3;data4
data1;da
ta
2;data3;data4
Is there any special combination of characters to include in the input file so that the output on the website reflects my intention?

I've already tried
Code:
da,"\n",ta,"\n",2;
and
Code:
da"\n"ta"\n",2;
Thanks in advanced.

Continue reading...
 
Back
Top