How, in Python, can I use shlex.split() or similar to split strings, preserving only double quotes? For example, if the input is "hello, world" is what 'i say' then the output would be ["hello, world", "is", "what", "'i", "say'"].
|
feedback
|
| |||||||||
feedback
|
|
You can use
| |||||
feedback
|
shlexbefore, so this was a fun one. – Matt Ball Jul 29 '11 at 4:03