
I have been trying to bring in a simple CSV using llCSV2List
CSV = 123,"something with a comma, inside quotes"
(This is standard CSV) ("Comma Separated Value"

the function SHOULD give...
[123],[something with a comma, inside quotes]
instead I get...
[123],["something with a comma],[inside quotes"]
Quotes are CSV standard for escaping strings... well batting my head against the wiki gave me the results...
CSV= 123,<something with a comma, inside GT/LT>
which gives
[123],[<something with a comma, inside GT/LT>]
(At this point I could just strip off the <> symbols... but that adds layers of lag)
So... is there any lsl standard way to escape the comma? ( and < / > symbols)
I have tried \, and other methods experimentation.
Lucy Linden was very good in trying to help me with this, but was unable to help.
CSV Doc: http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm
Guessing my only hope is the more complex llParseString2List but I am hoping its just an obscure incantation where I use a tilde or something else instead.
