11

我正在处理这样的字符串:"125A12C15" 我需要在字母和数字之间的边界处拆分它们,例如这个应该变成["125","A","12","C","15"].

在 Python 中是否有比逐个位置检查它是字母还是数字,然后进行相应连接更优雅的方法呢?例如这种东西的内置函数或模块?

感谢您的任何指点!

4

1 回答 1

32

itertools.groupby与方法一起使用str.isalpha

文档字符串:

groupby(iterable[, keyfunc]) -> 创建一个迭代器,它返回按 key(value) 的每个值分组的 (key, sub-iterator)。


文档字符串:

S.isalpha() -> 布尔值

如果 S 中的所有字符都是字母并且 S 中至少有一个字符,则返回 True,否则返回 False。


In [1]: from itertools import groupby

In [2]: s = "125A12C15"

In [3]: [''.join(g) for _, g in groupby(s, str.isalpha)]
Out[3]: ['125', 'A', '12', 'C', '15']

或者可能re.findallre.split来自正则表达式模块

In [4]: import re

In [5]: re.findall('\d+|\D+', s)
Out[5]: ['125', 'A', '12', 'C', '15']

In [6]: re.split('(\d+)', s)  # note that you may have to filter out the empty
                              # strings at the start/end if using re.split
Out[6]: ['', '125', 'A', '12', 'C', '15', '']

In [7]: re.split('(\D+)', s)
Out[7]: ['125', 'A', '12', 'C', '15']

至于性能,似乎使用正则表达式可能更快:

In [8]: %timeit re.findall('\d+|\D+', s*1000)
100 loops, best of 3: 2.15 ms per loop

In [9]: %timeit [''.join(g) for _, g in groupby(s*1000, str.isalpha)]
100 loops, best of 3: 8.5 ms per loop

In [10]: %timeit re.split('(\d+)', s*1000)
1000 loops, best of 3: 1.43 ms per loop
于 2013-03-22T14:12:22.110 回答