python实现字符串替换
时间: 2023-10-20 18:11:47 浏览: 78
在Python中,可以使用字符串内置的replace()方法来进行字符串替换。replace()方法接受两个参数,第一个参数是需要被替换的子字符串,第二个参数是用来替换的字符串。例如:
```
string = "Hello world"
new_string = string.replace("world", "Python")
print(new_string)
```
输出结果为:
```
Hello Python
```
如果需要替换多个子字符串,可以使用正则表达式来匹配需要被替换的字符串,然后使用re模块的sub()方法进行替换。例如:
```
import re
string = "Hello world"
new_string = re.sub("world", "Python", string)
print(new_string)
```
输出结果同样为:
```
Hello Python
```
阅读全文