vote up 18 vote down star
3

I have a string which is like this:

this is "a test"

I'm trying to write something in Python to split it up by space while ignoring spaces within quotes. The result I'm looking for is:

['this','is','a test']

PS. I know you are going to ask "what happens if there are quotes within the quotes, well, in my application, that will never happen.

flag

7 Answers

vote up 35 vote down check

You want split, from the shlex module.

>>> import shlex
>>> shlex.split('this is "a test"')
['this', 'is', 'a test']

It has some idiosyncrasies, but it should do what you want.

link|flag
Brilliant! Exactly what I was looking for. Thanks. – Adam Pierce Sep 17 '08 at 4:30
2  
It is so true that everything you possibly want as a programming is already in the python libraries. – William Sep 17 '08 at 4:31
vote up 5 vote down

Have a look at the shlex module, particularly shlex.split.

>>> import shlex

>>> shlex.split('This is "a test"')

['This', 'is', 'a test']

link|flag
same-time identical answer :O – orlandu63 Feb 7 at 23:21
vote up 4 vote down

Since this question is tagged with regex, I decided to try a regex approach. I first replace all the spaces in the quotes parts with \x00, then split by spaces, then replace the \x00 back to spaces in each part.

Both versions do the same thing, but splitter is a bit more readable then splitter2.

import re

s = 'this is "a test" some text "another test"'

def splitter(s):
    def replacer(m):
        return m.group(0).replace(" ", "\x00")
    parts = re.sub('".+?"', replacer, s).split()
    parts = [p.replace("\x00", " ") for p in parts]
    return parts

def splitter2(s):
    return [p.replace("\x00", " ") for p in re.sub('".+?"', lambda m: m.group(0).replace(" ", "\x00"), s).split()]

print splitter2(s)
link|flag
You should have used re.Scanner instead. It's more reliable (and I have in fact implemented a shlex-like using re.Scanner). – Devin Jeanpierre Mar 24 at 16:37
vote up 3 vote down

I see regex approaches here that look complex and/or wrong. This surprises me, because regex syntax can easily describe "whitespace or thing-surrounded-by-quotes", and most regex engines (including Python's) can split on a regex. So if you're going to use regexes, why not just say exactly what you mean?:

test = 'this is "a test"'  # or "this is 'a test'"
pieces = [p for p in re.split("( |[\\\"'].*[\\\"'])", test) if p.strip()]

Explanation:

[\\\"'] = double-quote or single-quote
.* = anything
( |X) = space or X
.strip() = remove space and empty-string separators

shlex probably provides more features, though.

link|flag
I was thinking much the same, but would suggest instead [t.strip('"') for t in re.findall(r'[^\s"]+|"[^"]*"', 'this is "a test"')] – Darius Bacon Feb 8 at 3:09
What does that split do when there are apostrophes inside the double quotes: He said, "Don't do that!" I think it will treat <"Don'> as one unit, won't it? – Jonathan Leffler Feb 8 at 3:21
Jonathan: in this case, no, I made two mistakes that cancel each other out in that case: the greedy .* will go to the final ". :-) I should have said "( |\\\".*?\\\"|'.*?')". Nice catch. – Kate Feb 8 at 3:39
+1 I'm using this because it was a heck of a lot faster than shlex. – hanleyp Nov 16 at 19:44
vote up 2 vote down

Try this:

  def adamsplit(s):
    result = []
    inquotes = False
    for substring in s.split('"'):
      if not inquotes:
        result.append(substring.split())
      else:
        result.append(substring)
      inquotes = not inquotes
    return result
link|flag
This won't work with: "This is 'a test'" – Matthew Schinckel Sep 17 '08 at 5:40
vote up 2 vote down

Depending on your use case, you may also want to check out the csv module:

import csv
lines = ['this is "a string"', 'and more "stuff"']
for row in csv.reader(lines, delimiter=" "):
    print row

Output:

['this', 'is', 'a string']
['and', 'more', 'stuff']
link|flag
vote up 0 vote down

If you don't care about sub strings than a simple

>>> 'a short sized string with spaces '.split()

Performance:

>>> s = " ('a short sized string with spaces '*100).split() "
>>> t = timeit.Timer(stmt=s)
>>> print "%.2f usec/pass" % (1000000 * t.timeit(number=100000)/100000)
171.39 usec/pass

Or string module

>>> from string import split as stringsplit; 
>>> stringsplit('a short sized string with spaces '*100)

Performance: String module seems to perform better than string methods

>>> s = "stringsplit('a short sized string with spaces '*100)"
>>> t = timeit.Timer(s, "from string import split as stringsplit")
>>> print "%.2f usec/pass" % (1000000 * t.timeit(number=100000)/100000)
154.88 usec/pass

Or you can use RE engine

>>> from re import split as resplit
>>> regex = '\s+'
>>> medstring = 'a short sized string with spaces '*100
>>> resplit(regex, medstring)

Performance

>>> s = "resplit(regex, medstring)"
>>> t = timeit.Timer(s, "from re import split as resplit; regex='\s+'; medstring='a short sized string with spaces '*100")
>>> print "%.2f usec/pass" % (1000000 * t.timeit(number=100000)/100000)
540.21 usec/pass

For very long strings you should not load the entire string into memory and instead either split the lines or use an iterative loop

link|flag
You seem to have missed the whole point of the question. There are quoted sections in the string that need to not be split. – rjmunro Oct 31 '08 at 23:08

Your Answer

Get an OpenID
or

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