从引用之间提取字符串

时间:2010-01-16 05:53:08

标签: python string extraction quotations

我想从用户输入的文本中提取信息。想象一下,我输入以下内容:

SetVariables "a" "b" "c"

如何在第一组报价单之间提取信息?然后第二个?然后是第三个?

3 个答案:

答案 0 :(得分:34)

>>> import re
>>> re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ')
['a', 'b', 'c']

答案 1 :(得分:27)

你可以在它上面做一个string.split()。如果使用引号(即偶数引号)正确格式化字符串,则列表中的每个奇数值都将包含引号之间的元素。

>>> s = 'SetVariables "a" "b" "c"';
>>> l = s.split('"')[1::2]; # the [1::2] is a slicing which extracts odd values
>>> print l;
['a', 'b', 'c']
>>> print l[2]; # to show you how to extract individual items from output
c

这也是比正则表达式更快的方法。使用timeit模块,此代码的速度大约快4倍:

% python timeit.py -s 'import re' 're.findall("\"([^\"]*)\"", "SetVariables \"a\" \"b\" \"c\" ")'
1000000 loops, best of 3: 2.37 usec per loop

% python timeit.py '"SetVariables \"a\" \"b\" \"c\"".split("\"")[1::2];'
1000000 loops, best of 3: 0.569 usec per loop

答案 2 :(得分:11)

Regular expressions擅长:

import re
quoted = re.compile('"[^"]*"')
for value in quoted.findall(userInputtedText):
    print value