Hi all
I am reading a csv file and I have encounted a problem when there is a comma inside the field
It all works till I get a comma within a comma
all the fields will have "" around it.
string delimiter=",";
using (var sr = new StreamReader(fileName))
{
sr.ReadLine(); //skip headers
while (!sr.EndOfStream)
{
var readline = sr.ReadLine();
if (readline == null) continue;
var fields = readline.Split (delimiter.ToCharArray());
}
}if I CANNOT split because of commas within quotation . How can I recode it?
I cannot use open source or thirdy party libraries.
Any suggestions?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…