I have a VBA application that runs every day. It checks a folder where CSVs are downloaded automatically, and adds their contents to a database. When parsing them, I reali
A simple regex for parsing a CSV line, assuming no quotes inside quoted fields, is:
"[^"]*"|[^,]*
Each match will return a field.