Python正则表达式多组匹配
阿神
阿神 2017-04-17 15:14:00
0
2
798
阿神
阿神

闭关修行中......

répondre à tous(2)
黄舟

search的功能就是: 从左到右,去计算是否匹配,如果有匹配,就返回。 即只要找到匹配,就返回了。 所以,最多只会匹配一个, 而不会匹配多个。
findall可以全部匹配。

#!/usr/bin/python
# -*- coding: utf-8 -*- 

import re

str = 'xiaohong loves xiaoming,xiaozhu loves xiaoli,xiaopeng loves xiaozhao'

names = re.findall(r'(\S+) loves (\S+)(,|$)',str, re.I)

print names

if names:
    for group in names:
        print group[0], group[1]
大家讲道理

应当使用 find_all()

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!