正则表达式re.sub

re.sub的功能

re是regular expression的所写,表示正则表达式

sub是substitute的所写,表示替换;

re.sub是个正则表达式方面的函数,用来实现通过正则表达式,实现比普通字符串的replace更加强大的替换功能;


import re

print(re.sub(r"|","","123"))

运行结果:

123


re.sub的各个参数的详细解释

re.sub共有五个参数。

re.sub(pattern, repl, string, count=0, flags=0)

其中三个必选参数:pattern, repl, string

两个可选参数:count, flags


第一个参数:pattern

pattern,表示正则中的模式字符串,这个没太多要解释的。


第二个参数:repl

repl,就是replacement,被替换,的字符串的意思。

repl可以是字符串,也可以是函数。


import re;

def pythonReSubDemo():

    """

        demo Pyton re.sub

    """

    inputStr = "hello 123 world 456";

    def _add111(matched):

        intStr = matched.group("number"); #123

        intValue = int(intStr);

        addedValue = intValue + 111; #234

        addedValueStr = str(addedValue);

        return addedValueStr;

    replacedStr = re.sub("(?P\d+)", _add111, inputStr);

    print "replacedStr=",replacedStr; #hello 234 world 567


第三个参数:string

string,即表示要被处理,要被替换的那个string字符串。

没什么特殊要说明。


第四个参数:count

举例说明:

继续之前的例子,假如对于匹配到的内容,只处理其中一部分。

你可能感兴趣的:(正则表达式re.sub)