.net - Regex to find unqoted commas? -


I'm thinking that we can also search for many quotation marks on the left side and also in the comma. I'm not sure how to write it. Anyone know?

Actually ... you have to check the bus (left or right).

I want to split it on, so it comma.

Example:

  one, "two, three"  

should be split into two strings:

  ['one', '' two, three '']  

Are you parsing CSV? Reggae is a very bad way of doing this. After reading the CSV definition (easily googlable) you can write an automaton to it. Or ... you can already steal one of the many prepared solutions on the web.


Comments