I'm writing from a csv file to a table.
I've got the split on comma working fine
EXCEPT when my users have a comma within a field.
In this case the field is actually delimited by
," and ",
rather than by
, ,
But I can't figure out an efficient way to do this...
using regexp I can find and replace those expressions(,"",) but that doesn't help as I still have to split by only one option.
Any ideas?
Thanks
I've got the split on comma working fine
EXCEPT when my users have a comma within a field.
In this case the field is actually delimited by
," and ",
rather than by
, ,
But I can't figure out an efficient way to do this...
using regexp I can find and replace those expressions(,"",) but that doesn't help as I still have to split by only one option.
Any ideas?
Thanks