1. 程式人生 > >python 零寬負預測先行斷言 (心得)

python 零寬負預測先行斷言 (心得)

ont 不能 pos nor 如果 後綴 multi group reply

零寬(環視)負預測先行斷言(負向前視斷言): (?!exp), 它斷言在此位置前面不能匹配表達式, 所以它只會匹配後綴exp不存在的位置。

零寬度,說明它是不占字符寬度的.

Ex:

 1 >>>import re
 2 >>>[sale%s % e.group(2) for e in  3  re.finditer(r(?m)^\s+(?!noreply)(\w+)(@\w+\.\w+),
 4          ‘‘‘
 5               [email protected]
 6               [email protected]
/* */ 7 [email protected] 8 [email protected] 9 ‘‘‘)] 10 [[email protected], [email protected], [email protected]]

其中, r‘(?m)^\s+(?!noreply)(\w+)(@\w+\.\w+)‘

(?m)代表 multiline, 多行檢索。

^\s+ 代表 置於句首的多個空格符。

(?!noreply)代表 如果存在後綴noreply, 則表達式不能被匹配。

(\w+) 匹配 郵件用戶名

(\w+)(@\w+\.\w+) 匹配 郵件域名

group(1)代表用戶名(如下)

group(2)代表域名

[sale%s % e.group(1) for e in  re.finditer(r(?m)^\s+(?!noreply)(\w+)(@\w+\.\w+),
         ‘‘‘
              [email protected]
              [email protected]
              [email protected]
              [email protected]
/* */ ‘‘‘)] [salesales, salepostmaster, saleeng]

感謝:

http://blog.csdn.net/firetaker/article/details/5603756

http://blog.csdn.net/binjly/article/details/12152235

python 零寬負預測先行斷言 (心得)