I need to be able to take a string like:
'''foo, bar, "one, two", three four'''
into:
['foo', 'bar', 'one, two', 'three four']
I have an feeling (with hints from #python) that the solution is going to involve the shlex module.
|
1
|
|
|
|
|
|
The shlex module solution allows escaped quotes, one quote escape another, and all fancy stuff shell supports.
escaped quotes example:
|
||||||
|
|
|
You may also want to consider the csv module. I haven't tried it, but it looks like your input data is closer to CSV than to shell syntax (which is what shlex parses). |
||
|
|
I would loop through the characters, append the current character to a string, and when I hit a comma I would append that string to the array and start a new string and continue copying. Then when it hits a double-quote, ignore commas until you hit another double-quote. |
||
|
|
|
|
You could do something like this:
|
||
|
|
|
|
If it doesn't need to be pretty, this might get you on your way:
|
|||
|
|
|
|
It depends how complicated you want to get... do you want to allow more than one type of quoting. How about escaped quotes? Your syntax looks very much like the common CSV file format, which is supported by the Python standard library:
Outputs:
HTH! |
||
|
|
|
I'd say a regular expression would be what you're looking for here, though I'm not terribly familiar with Python's Regex engine. Assuming you use lazy matches, you can get a set of matches on a string which you can put into your array. |
||
|
|