- 论坛徽章:
- 0
|
[quote]原帖由 limodou 于 2008-6-6 15:26 发表 ![]()
因为search只能返回一次,所以只能返回第一个,使用finditer就可以了,我修改一下:
- import re
- pattern=r'(?Pwindows|Linux) (?P\d+)'
- oss='windows 3 Linux 4'
- hd=re.compile(pattern)
- for a in hd.f ... [/quote]
- >>> pattern=r'(?P<os>windows|Linux) (?P<ver>\d+)'
- >>> oss='windows 3 Linux 4'
- >>> hd=re.compile(pattern)
- >>> for a in hd.finditer(oss):
- ... print a.groupdict()
- ...
- {'os': 'windows', 'ver': '3'}
- {'os': 'Linux', 'ver': '4'}
- >>> a = hd.findall(oss)
- >>> print a
- [('windows', '3'), ('Linux', '4')
复制代码
Maintain the named groups by yourself -_-b |
|