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

第4月第20天 python re

时间:2017-01-20 16:10:08      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:match   print   color   log   www   string   group   replace   http   

1.

import re


replace_values = [one, two, three]
replace_keys = [str(i) for i in xrange(1, 4)]
replace_dict = dict(zip(replace_keys, replace_values))

def replace(match):
    return replace_dict[match.group(0)]


string = 1 adfa fa 2 fafsa 3 adfaf
print re.sub(r(^|\b)[1-3]($|\b), replace, string)

作者:孙竟
链接:https://www.zhihu.com/question/36596275/answer/68175650
来源:知乎
著作权归作者所有,转载请联系作者获得授权。

https://www.zhihu.com/question/36596275

第4月第20天 python re

标签:match   print   color   log   www   string   group   replace   http   

原文地址:http://www.cnblogs.com/javastart/p/6322888.html

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