Jump to content

CSV - Are there any accepted special characters?


Recommended Posts

Guest ivotkl
Posted

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...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...