Hi, this is my first time posting here. My data has a problem. When importing my data, some lines have shifted and I would like to find a way to put them back quickly (I could do it but by hand and it is not optimal).

This happens everytimes on the same variable. I give you an example :

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input str8 id str9 a str63 b str9(c d e)
"1"    "ID1" "I"   ""    ""    ""  
"\nD1" "ID1" "ID1" "ID1" ""    ""  
"2"    "ID2" "ID2" "ID2" "ID2" "ID2"
"3"    "ID3" "ID3" "ID3" "ID3" "ID3"
end

I don't know why but it went to the line, breaking the word and adding \ n
I want this :

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input str8 id str9 a str63 b str9(c d e)
"1" "ID1" "ID1" "ID1" "ID1" "ID1"
"2" "ID2" "ID2" "ID2" "ID2" "ID2"
"3" "ID3" "ID3" "ID3" "ID3" "ID3"
end
Btw, i'm importing those data from CSV and there is the same problem in CSV files
Thanks you !