in reply to Extracting data from a string
nc,71526435,0,"text text, text text,456 etc...",36.5,121.1,1.4,7.50, 8 +,"text2 text, text text,123 etc..."
If you are sure on the format of your input, you can parse such data easily with a regex (see below, and also this node by planetscape). However your code will likely not work if anything changes in your data-format - or if the data contains errors. Things that will make your regex complicated will be different number formats, or strings containing \" ... and many more. Thats why Text:CSV has been recommended to you.
But now to the regex-approach:
|
|---|