源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Python使用正则表达式实现文本替换的方法

  • 时间:2021-06-29 12:07 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Python使用正则表达式实现文本替换的方法
本文实例讲述了Python使用正则表达式实现文本替换的方法。分享给大家供大家参考,具体如下: 2D客户端编程从某种意义上来讲就是素材组织,所以,图片素材组织经常需要批量处理,python一定是最佳选择,不管是win/linux/mac都有一个简单的运行环境 举两个[b]应用场景[/b]: ① 如果不是在某个文件夹里面则将文件夹名称插入前面 ② 所有的文件名名称加上一个前缀 直接看代码吧:
# encoding: UTF-8
import re
# 将正则表达式编译成Pattern对象
p = re.compile(r'(?P<folder>(w+/)*)(?P<filename>w+.png)')
# 使用Pattern匹配文本,获得匹配结果,无法匹配时将返回None
#match = pattern.match('<key>xxx/duobaojiemian_L/yangpizi.png</key>')
the_str = """<key>XXXX/duobaojiemian2222_L/duobaojiemian_L/yangpizi.png</key>
 <key>yangpizi2.png</key>
 <key>yangpizi3.png</key> """
for m in p.finditer(the_str):
 # 使用Match获得分组信息
 print m.groupdict()
print '-------------------------------'
#f = lambda m: m.group().find('XXXX/') == -1 and 'XXXX/'+m.group() or m.group()
def f(m):
 s = m.group()
 return s.find('XXXX/') == -1 and 'XXXX/'+s or s
def f2(m2):
 d = m2.groupdict()
 return d['folder']+'the_'+d['filename']
print p.sub(f2, the_str)
关于正则表达式有几个需要交代的 ①. python的正则表达式如果捕获需要分组则使用这个语法(?P<命名>匹配的正则表达式) ②. re.compile用于编译正则表达式并返回对象 ③. p.finditer返回所有匹配的迭代器 ④. p.sub将匹配项传入回调函数,并且用返回值替换文本 ⑤. m.groupdict,可以使用则的分组命名取相应的值 [b]PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:[/b] [b]JavaScript正则表达式在线测试工具: [/b][url=http://tools.1sucai.cn/regex/javascript]http://tools.1sucai.cn/regex/javascript[/url] [b]正则表达式在线生成工具: [/b][url=http://tools.1sucai.cn/regex/create_reg]http://tools.1sucai.cn/regex/create_reg[/url] 更多关于Python相关内容可查看本站专题:《[url=http://www.1sucai.cn/Special/667.htm]Python正则表达式用法总结[/url]》、《[url=http://www.1sucai.cn/Special/663.htm]Python数据结构与算法教程[/url]》、《[url=http://www.1sucai.cn/Special/648.htm]Python Socket编程技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/642.htm]Python函数使用技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/636.htm]Python字符串操作技巧汇总[/url]》、《[url=http://www.1sucai.cn/Special/520.htm]Python入门与进阶经典教程[/url]》及《[url=http://www.1sucai.cn/Special/516.htm]Python文件与目录操作技巧汇总[/url]》 希望本文所述对大家Python程序设计有所帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部