Is there any quick way of parsing a string like:
This,Is,A,String,\,,With,A,Comma

Into a list
("This", "Is", "A", "String", ",", "With, "A", "Comma")

Basically, how can I split it by commas, except when it is escaped.

Dan

Reply via email to