python中字符串替换函数
时间: 2023-07-06 22:15:05 浏览: 102
字符串子串替换函数
Python中字符串替换函数有很多,这里介绍其中的几个:
1. `replace()`函数
`replace()`函数可以将字符串中的某个子串替换成指定的字符串。该函数的语法如下:
```python
str.replace(old, new[, count])
```
其中:
- `old`:要被替换的子串。
- `new`:用于替换 `old` 的新字符串。
- `count`:可选参数,指定替换的次数。
示例:
```python
my_str = "Hello, World!"
new_str = my_str.replace("World", "Python")
print(new_str) # 输出:Hello, Python!
```
2. `translate()`函数
`translate()`函数可以将字符串中的某些字符替换成指定的字符。该函数的语法如下:
```python
str.translate(table)
```
其中:
- `table`:翻译表,可以使用 `maketrans()` 函数生成。
示例:
```python
my_str = "Hello, World!"
table = str.maketrans("o", "0")
new_str = my_str.translate(table)
print(new_str) # 输出:Hell0, W0rld!
```
3. `sub()`函数
`sub()`函数是 `re` 模块中的函数,用于正则表达式替换。该函数的语法如下:
```python
re.sub(pattern, repl, string, count=0, flags=0)
```
其中:
- `pattern`:正则表达式。
- `repl`:用于替换的字符串。
- `string`:要被替换的字符串。
- `count`:可选参数,指定替换的次数。
- `flags`:可选参数,指定正则表达式的匹配模式。
示例:
```python
import re
my_str = "Hello, 123!"
new_str = re.sub(r"\d+", "World", my_str)
print(new_str) # 输出:Hello, World!
```
以上是常用的几个字符串替换函数,根据需求选择合适的函数即可。
阅读全文