35

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

SetVariables "a" "b" "c"

如何在第一组报价之间提取信息?那么第二个呢?那么第三个呢?

4

3 回答 3

55
>>> import re
>>> re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ')
['a', 'b', 'c']
于 2010-01-16T05:58:24.207 回答
38

你可以对它做一个 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
于 2010-01-16T06:16:45.327 回答
15

正则表达式擅长于此:

import re
quoted = re.compile('"[^"]*"')
for value in quoted.findall(userInputtedText):
    print value
于 2010-01-16T05:58:28.980 回答