Hi, all. I have a csv file that's choking my db manager, mostly I believe because it's comma-delimited with double quotes for text qualifiers and scattered records have double quotes within the data. For example:
2000,"Thomas "Tom" Jefferson","etc."
Is there a way to search with regular expressions for text between two commas that has more than three or four quotation marks? (The trick, I guess, is to exclude commas and line ending characters from your wildcard search, but I can't figure out how to say everything but commas.)
Thanks in advance.
Tom
P.S. Why does ANYONE store data in comma-delimited format? Argh.
2000,"Thomas "Tom" Jefferson","etc."
Is there a way to search with regular expressions for text between two commas that has more than three or four quotation marks? (The trick, I guess, is to exclude commas and line ending characters from your wildcard search, but I can't figure out how to say everything but commas.)
Thanks in advance.
Tom
P.S. Why does ANYONE store data in comma-delimited format? Argh.