A
Ann Marinas
Happy New Year to all! 
I am currently developoing an application that imports data from a CSV file.
Each comma represents an array item that I need to extract data with.
My problem is this...
I am encountering a string that has the example below:
a, b, c. "d,e,f,g", abcdef
----The data that has double quotes is considered to be one column.
Whenever I am using the String.Split(',') method, it keeps on breaking the
commas inside the quotes.
How can I prevent this so that it would treat the commas within the quotes
as a single unit?
I would really appreciate the help!
More Power to all!
Ann

I am currently developoing an application that imports data from a CSV file.
Each comma represents an array item that I need to extract data with.
My problem is this...
I am encountering a string that has the example below:
a, b, c. "d,e,f,g", abcdef
----The data that has double quotes is considered to be one column.
Whenever I am using the String.Split(',') method, it keeps on breaking the
commas inside the quotes.
How can I prevent this so that it would treat the commas within the quotes
as a single unit?
I would really appreciate the help!
More Power to all!

Ann