Hi

I'm looking for a fast expression to parse a file which contains potentially millions of records
such as the following:

Code:
"363111000686","923028199557","923456973171","03-01-2008 09:27:39","32"\n
I've come up with this:
Code:
([^,\"\n])+
Now I'm no regex fundi, so any help would be highly appreciated.

Thanks