re 模块是 Python 内置的用于处理正则表达式的库,re.sub.repl 函数是 re 模块的一个子函数,用于替换字符串中的全部或部分匹配项。
函数原型:
re.sub(pattern, repl, string, count=0, flags=0)
其中,pattern 表示要搜索的正则表达式;repl 表示替换的字符串或函数;string 表示要被替换的目标字符串,其余两个参数 count 和 flags 可选。
原字符串中可以直接替换为指定字符串,例如:
import re
string = "I love Python!"
new_string = re.sub(r"Python", "Java", string)
print(new_string) # 'I love Java!'
如果 repl 参数不是字符串,而是一个函数,则 re.sub() 函数在匹配到字符串后,将匹配到的字符串作为参数传递给函数,函数返回的结果将作为替换的字符串。例如:
import re
def repl_callback(matched):
value = int(matched.group("number")) + 1
return str(value)
string = "I have 3 apples and 6 bananas."
new_string = re.sub(r"(?P<number>\d+)", repl_callback, string)
print(new_string) # 'I have 4 apples and 7 bananas.'
下面的示例将字符串中的所有小写字母都替换成了大写字母:
import re
string = "i love python!"
new_string = re.sub(r"[a-z]", lambda matched: matched.group(0).upper(), string)
print(new_string) # 'I LOVE PYTHON!'
下面的示例将字符串中的所有数字都增加了 1:
import re
def repl_callback(matched):
value = int(matched.group(0)) + 1
return str(value)
string = "I have 3 apples and 6 bananas."
new_string = re.sub(r"\d+", repl_callback, string)
print(new_string) # 'I have 4 apples and 7 bananas.'
以上就是 Python re 模块 re.sub.repl 函数的作用与使用方法的完整攻略。
本文链接:http://task.lmcjl.com/news/15427.html