Hey I\'m trying to figure out a regular expression to do the following.
Here is my string
Place,08/09/2010,\"15,531\",\"2,909\",650
I
a = """Place,08/09/2010,"15,531","2,909",650""".split(',') result = [] i=0 while i
Result: ['Place', '08/09/2010', '"15,531"', '"2,909"', '650'] Not a big fan of regular expressions unless you absolutely need them
['Place', '08/09/2010', '"15,531"', '"2,909"', '650']