好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

python编译正则表达式提高效率方法详解

Python是一个很酷的语言,因为你可以在很短的时间内利用很少的代码做很多事情,再加上正则表达式就更能体现其效果,下面这篇文章主要给大家介绍了关于python中通过预先编译正则表达式提高效率的相关资料,需要的朋友可以参考下。

import re 
 
# Precompile the patterns 
regexes = [ 
 re测试数据pile(p) 
 for p in ['this', 'that'] 
] 
text = 'http://blog.csdn.net/caimouse is great blog, this is my blog.' 
 
print('Text: {!r}\n'.format(text)) 
 
for regex in regexes: 
 print('Seeking "{}" ->'.format(regex.pattern), 
   end=' ') 
 
 if regex.search(text): 
  print('match!') 
 else: 
  print('no match') 
Text: 'http://blog.csdn.net/caimouse is great blog, this is my blog.'


Seeking "this" -> match!
Seeking "that" -> no match 

以上就是python编译正则表达式提高效率方法详解的详细内容,更多请关注Gxl网其它相关文章!

查看更多关于python编译正则表达式提高效率方法详解的详细内容...

  阅读:42次