如何使用Python替换字符串中的指定字符

在Python中,我们可以使用字符串函数replace()来替换指定字符,它可以将字符串中的某个字符替换成另一个字符。例如,我们有一个字符串:

str = "Hello World!"

我们想把字符串中的“l”替换成“x”,可以使用replace()函数:

new_str = str.replace("l", "x")

新的字符串new_str的值为:

"Hexxo Worxd!"

我们也可以使用replace()函数替换多个字符,只需要将多个字符放在一个字符串中就可以了,例如:

new_str = str.replace("He", "Ha")

新的字符串new_str的值为:

"Hallo World!"

我们也可以使用正则表达式来替换字符串中的指定字符,例如:

import re

new_str = re.sub("l", "x", str)

新的字符串new_str的值为:

'Hexxo Worxd!'

使用Python替换字符串中的指定字符,可以使用字符串函数replace()或者使用正则表达式来实现。

本文链接:http://task.lmcjl.com/news/6166.html

展开阅读全文