python 零宽负预测先行断言 (心得)

零宽(环视)负预测先行断言(负向前视断言): (?!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

转载于:https://www.cnblogs.com/buguo/p/7410985.html

你可能感兴趣的:(python 零宽负预测先行断言 (心得))