当前位置:  开发笔记 > 编程语言 > 正文

正则表达式,但用于在匹配中写入

如何解决《正则表达式,但用于在匹配中写入》经验,为你挑选了1个好方法。

当使用正则表达式时,我们通常会使用它们来提取某种信息.我需要的是用其他值替换匹配值...

现在我正在这样做......

def getExpandedText(pattern, text, replaceValue):
    """
        One liner... really ugly but it's only used in here.
    """

    return text.replace(text[text.find(re.findall(pattern, text)[0]):], replaceValue) + \
            text[text.find(re.findall(pattern, text)[0]) + len(replaceValue):]

所以,如果我喜欢

>>> getExpandedText("aaa(...)bbb", "hola aaaiiibbb como estas?", "ooo")
'hola aaaooobbb como estas?'

它用'ooo'改变(...).

你们知道用python正则表达式我们能做到吗?

非常感谢!



1> Swati..:
sub (replacement, string[, count = 0])

sub返回通过替换替换替换字符串中RE的最左边非重叠出现而获得的字符串.如果未找到模式,则返回字符串不变.

    p = re.compile( '(blue|white|red)')
    >>> p.sub( 'colour', 'blue socks and red shoes')
    'colour socks and colour shoes'
    >>> p.sub( 'colour', 'blue socks and red shoes', count=1)
    'colour socks and red shoes'

推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有