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

Python - 连续替换(replace)的正則表達式(re)

时间:2017-04-22 19:49:37      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:value   text   技术   views   技术分享   escape   article   ++   javascrip   

字符串连续替换, 能够连续使用replace, 也能够使用正則表達式.
正則表達式, 通过字典的样式, key为待替换, value为替换成, 进行一次替换就可以.


代码

# -*- coding: utf-8 -*-

import re

my_str = "(condition1) and --condition2--"
print my_str.replace("condition1", "").replace("condition2", "text")

rep = {"condition1": "", "condition2": "text"}
rep = dict((re.escape(k), v) for k, v in rep.iteritems())
pattern = re.compile("|".join(rep.keys()))
my_str = pattern.sub(lambda m: rep[re.escape(m.group(0))], my_str)

print my_str

"""
输出:
() and --text--
() and --text--
"""

技术分享

Python - 连续替换(replace)的正則表達式(re)

标签:value   text   技术   views   技术分享   escape   article   ++   javascrip   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/6748783.html

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