栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

python中的正则表达式:是否可以获取匹配,替换和最终字符串?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python中的正则表达式:是否可以获取匹配,替换和最终字符串?

class Replacement(object):    def __init__(self, replacement):        self.replacement = replacement        self.matched = None        self.replaced = None    def __call__(self, match):        self.matched = match.group(0)        self.replaced = match.expand(self.replacement)        return self.replaced>>> repl = Replacement('not the \1')>>> re.sub('(orig.*?l)', repl, 'This is the original string.')    'This is the not the original string.'>>> repl.matched    'original'>>> repl.replaced    'not the original'

编辑: 正如@FJ所指出的,以上内容将仅记住最后一个匹配项/替换项。此版本可处理多个事件:

class Replacement(object):    def __init__(self, replacement):        self.replacement = replacement        self.occurrences = []    def __call__(self, match):        matched = match.group(0)        replaced = match.expand(self.replacement)        self.occurrences.append((matched, replaced))        return replaced>>> repl = Replacement('[\1]')>>> re.sub('s(d)', repl, '1 2 3')    '1[2][3]'>>> for matched, replaced in repl.occurrences:   ....:     print matched, '=>', replaced   ....:      2 => [2] 3 => [3]


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/367403.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号