vote up 4 vote down star
1

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.

flag

68% accept rate

7 Answers

vote up 3 vote down check

The shlex module solution allows escaped quotes, one quote escape another, and all fancy stuff shell supports.

>>> import shlex
>>> my_splitter = shlex.shlex('''foo, bar, "one, two", three four''', posix=True)
>>> my_splitter.whitespace += ','
>>> my_splitter.whitespace_split = True
>>> print list(my_splitter)
['foo', 'bar', 'one, two', 'three', 'four']

escaped quotes example:

>>> my_splitter = shlex.shlex('''"test, a",'foo,bar",baz',bar \xc3\xa4 baz''',
                              posix=True) 
>>> my_splitter.whitespace = ',' ; my_splitter.whitespace_split = True 
>>> print list(my_splitter)
['test, a', 'foo,bar",baz', 'bar \xc3\xa4 baz']
link|flag
This splits up the three and four, which is not in the specification. – Rodrigo Queiro Sep 22 '08 at 23:29
Needs a fix for splitting the final "three four". – ΤΖΩΤΖΙΟΥ Sep 22 '08 at 23:35
Simply changing my_splitter.whitespace += ',' to = ',' will do it, but you still need to strip each element. – Jeremy Michael Cantrell Sep 23 '08 at 20:44
vote up 5 vote down

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).

link|flag
Agreed. Minus the enclosing ''' portions, that looks like pretty standard CSV formatting. (Well, as much as it can, without a CSV standard.) – jdmichal Sep 22 '08 at 23:01
@jdmichal: The ''' is just a way to quote strings in Python. – ΤΖΩΤΖΙΟΥ Sep 22 '08 at 23:19
vote up -2 vote down

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.

link|flag
vote up 1 vote down

You could do something like this:

>>> import re
>>> pattern = re.compile(r'\s*("[^"]*"|.*?)\s*,')
>>> def split(line):
...  return [x[1:-1] if x[:1] == x[-1:] == '"' else x
...          for x in pattern.findall(line.rstrip(',') + ',')]
... 
>>> split("foo, bar, baz")
['foo', 'bar', 'baz']
>>> split('foo, bar, baz, "blub blah"')
['foo', 'bar', 'baz', 'blub blah']
link|flag
vote up -2 vote down

If it doesn't need to be pretty, this might get you on your way:

def f(s, splitifeven):
    if splitifeven & 1:
        return [s]
    return [x.strip() for x in s.split(",") if x.strip() != '']

ss = 'foo, bar, "one, two", three four'

print sum([f(s, sie) for sie, s in enumerate(ss.split('"'))], [])
link|flag
vote up 6 vote down

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:

import csv
reader = csv.reader(['''foo, bar, "one, two", three four'''], skipinitialspace=True)
for r in reader:
  print r

Outputs:

['foo', 'bar', 'one, two', 'three four']

HTH!

link|flag
Yeah, the csv module is totally what you want here. – Electrons_Ahoy Nov 12 '08 at 18:59
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.