I would like to parse a string like this:

-o 1 --long "Some long string"

into this:

["-o", "1", "--long", 'Some long string']

or similar.

This is different than either getopt, or optparse, which start with sys.argv parsed input (like the output I have above). Is there a standard way to do this? Basically, this is "splitting" while keeping quoted strings together.

My best function so far:

import csv
def split_quote(string,quotechar='"'):
    '''

    >>> split_quote('--blah "Some argument" here')
    ['--blah', 'Some argument', 'here']

    >>> split_quote("--blah 'Some argument' here", quotechar="'")
    ['--blah', 'Some argument', 'here']
    '''
    s = csv.StringIO(string)
    C = csv.reader(s, delimiter=" ",quotechar=quotechar)
    return list(C)[0]
link|improve this question

62% accept rate
Invest a little time to browse the Python standard library. – tzot May 23 '09 at 22:18
1  
Thanks for the advice! This polite and insightful comment adds a lot to the discussion. – Gregg Lind May 24 '09 at 18:58
My own true forgetfulness revealed: stackoverflow.com/questions/92533, has me using shlex.split. Clearly I just forgot about it. – Gregg Lind May 25 '09 at 23:23
feedback

1 Answer

up vote 15 down vote accepted

I believe you want the shlex module.

>>> import shlex
>>> shlex.split('-o 1 --long "Some long string"')
['-o', '1', '--long', 'Some long string']
link|improve this answer
Thank you! I knew there was something like this! – Gregg Lind May 22 '09 at 18:41
feedback

Your Answer

 
or
required, but never shown

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