码迷,mamicode.com
首页 > 编程语言 > 详细

Python中字符串查找效率比较

时间:2015-05-06 22:59:55      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:python

Python中字符串查找方式有多种,常见的有re.match/search or str.find

用一个例子来说明各种方式的效率如下:

from timeit import timeit
import re

def find(string, text):
    if string.find(text) > -1:
        pass

def re_find(string, text):
    if re.match(text, string):
        pass

def best_find(string, text):
    if text in string:
       pass

print timeit("find(string, text)", "from __main__ import find; string='lookforme'; text='look'")  
print timeit("re_find(string, text)", "from __main__ import re_find; string='lookforme'; text='look'")  
print timeit("best_find(string, text)", "from __main__ import best_find; string='lookforme'; text='look'")

执行结果为:

0.441393852234
2.12302494049
0.251421928406

可以看到效率最高的方式是:if text in string :


参考链接:http://stackoverflow.com/questions/4901523/whats-a-faster-operation-re-match-search-or-str-find


Python中字符串查找效率比较

标签:python

原文地址:http://blog.csdn.net/lming_08/article/details/45541625

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!