I have a lot of .csv file that use "|" as delimiter:
1492624841097281|"19026960706021"|"3112642370"|"50000"|"0"|"VND"|""|""|"50000
I tried to read them like following
read.csv("a.csv",head=T, sep="|")
and
read.csv("a.csv",head=T, sep="\|")
I expect the columns will be separated but it didn't work. Please help me! Thanks a lot.