简体   繁体   English

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

[英]Regex in python: is it possible to get the match, replacement, and final string?

For doing a regex substitution, there are three things that you give it: 要进行正则表达式替换,您可以使用以下三种方法:

  • The match pattern 比赛模式
  • The replacement pattern 替换模式
  • The original string 原始字符串

There are three things that the regex engine finds that are of interest to me: 正则表达式引擎发现了我感兴趣的三件事:

  • The matched string 匹配的字符串
  • The replacement string 替换字符串
  • The final processed string 最终处理过的字符串

When using re.sub , the final string is what's returned. 使用re.sub ,最后一个字符串是返回的。 But is it possible to access the other two things, the matched string and replacement string? 但是有可能访问其他两个东西,匹配的字符串和替换字符串?

Here's an example: 这是一个例子:

orig = "This is the original string."
matchpat = "(orig.*?l)"
replacepat = "not the \\1"

final = re.sub(matchpat, replacepat, orig)
print(final)
# This is the not the original string

The match string is "original" and the replacement string is "not the original" . 匹配字符串是"original" ,替换字符串是"not the original" Is there a way to get them? 有办法获得它们吗? I'm writing a script to to search and replace in many files, and I want it to print it what it's finding and replacing, without printing out the entire line. 我正在编写一个脚本来搜索和替换许多文件,我希望它能够打印出它正在查找和替换的内容,而不打印整行。

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'

Edit: as @FJ has pointed out, the above will remember only the last match/replacement. 编辑:正如@FJ指出的那样,上面只会记住最后的匹配/替换。 This version handles multiple occurrences: 此版本处理多次出现:

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]

I looked at the documentation and it seems like you can pass a function reference into the re.sub : 我查看了文档,看起来你可以将函数引用传递给re.sub

import re

def re_sub_verbose(pattern, replace, string):
  def substitute(match):
    print 'Matched:', match.group(0)
    print 'Replacing with:', match.expand(replace)

    return match.expand(replace)

  result = re.sub(pattern, substitute, string)
  print 'Final string:', result

  return result

And I get this output when running re_sub_verbose("(orig.*?l)", "not the \\\\1", "This is the original string.") : 我在运行re_sub_verbose("(orig.*?l)", "not the \\\\1", "This is the original string.")时得到此输出re_sub_verbose("(orig.*?l)", "not the \\\\1", "This is the original string.")

Matched: original
Replacing with: not the original
This is the not the original string.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM