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'"].

link|improve this question

It captures the entire double quoted string, but splits up the single quoted string. – tekknolagi Jul 29 '11 at 3:43
1  
+1 for the interesting question. I don't get to write Python much these days, and I've never seen or used shlex before, so this was a fun one. – Matt Ball Jul 29 '11 at 4:03
Why thank you :) – tekknolagi Jul 29 '11 at 4:27
Python is really my job description these days – tekknolagi Jul 29 '11 at 4:27
feedback

2 Answers

up vote 3 down vote accepted
import shlex

def newSplit(value):
    lex = shlex.shlex(value)
    lex.quotes = '"'
    lex.whitespace_split = True
    lex.commenters = ''
    return list(lex)

print newSplit('''This string has "some double quotes" and 'some single quotes'.''')
link|improve this answer
a bit more complicated than the other solution, but it works – tekknolagi Jul 29 '11 at 4:01
1  
Only negligibly so, and the lex.commenters bit is actually something that my answer doesn't do. +1 for a different way to git-r-dun. – Matt Ball Jul 29 '11 at 4:05
I started with the source code to the shlex.split function from the python source and just tweaked it with the list of quotes characters. – Peter Lyons Jul 29 '11 at 17:36
feedback

You can use shlex.quotes to control which characters will be considered string quotes. You'll need to modify shlex.wordchars as well, to keep the ' with the i and the say.

import shlex

input = '"hello, world" is what \'i say\''
lexer = shlex.shlex(input)
lexer.quotes = '"'
lexer.wordchars += '\''

output = list(lexer)
# ['"hello, world"', 'is', 'what', "'i", "say'"]
link|improve this answer
actually, this one failed on something else I was writing, and Peter's worked. thank you though! – tekknolagi Jul 29 '11 at 15:36
Out of curiosity, what input did it fail on? – Matt Ball Jul 29 '11 at 15:40
feedback

Your Answer

 
or
required, but never shown

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