python里使用正则表达式的后向搜索肯定模式

Posted caimouse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python里使用正则表达式的后向搜索肯定模式相关的知识,希望对你有一定的参考价值。

在前面学习了比较多模式,有前向搜索的,也有后向搜索的,有肯定模式的,也有否定模式的。这次再来学习一个,就是后向搜索肯定模式,意思就是说已经扫描过了的字符串,还想后悔去看一下,是否可以匹配。它的语法是:(?<=pattern)。比如下面的例子,就是用来识别Twitter的账号,但它这种模式只会匹配,不会出现在匹配的字符串中,如下:
 
#python 3.6
#蔡军生 
#http://blog.csdn.net/caimouse/article/details/51749579
#
import re

twitter = re.compile(
    '''
    # A twitter handle: @username
    (?<=@)
    ([\\w\\d_]+)       # username
    ''',
    re.VERBOSE)

text = '''This text includes two Twitter handles.
One for @caimouse, and one for the author, @caijunsheng.
'''

print(text)
for match in twitter.findall(text):
    print('Handle:', match)


 结果输出如下:
 This text includes two Twitter handles.
One for @caimouse, and one for the author, @caijunsheng.


Handle: caimouse

Handle: caijunsheng

深入浅出Numpy
http://edu.csdn.net/course/detail/6149 

Python游戏开发入门