LostCreekDavid
Programmer
I know this has been talked about, but how do you read CSV files when some of the columns have embedded commas? For example
1,4,"Jones,John",1/1/1960
2,4,"Smith,Bob",2/2/1966
3,6,johnson,3/1/1963
When I use split, it puts the first and last names in two columns, but sometimes there are not two names. Is there an easy way to not split commas between quotes?
1,4,"Jones,John",1/1/1960
2,4,"Smith,Bob",2/2/1966
3,6,johnson,3/1/1963
When I use split, it puts the first and last names in two columns, but sometimes there are not two names. Is there an easy way to not split commas between quotes?