Parsing .csv file. It contains some cells with text like:
,"Some words, some more words, an so on",
So using ,
delimeter doesn't work correctly. The only solution i see is a regex pattern, which matches the string. To replace commas inside " "
with some rarely used symbol combination (like '___'). And to replace back to the original after script finish it's job.
Something like echo ${var//in/out}
But i'm not strong in regular expressions. And maybe i don't see more obvious solution.
Any help appreciated.