python去除文本换行
时间: 2023-05-31 19:03:43 浏览: 209
python去除字符串中的换行符
5星 · 资源好评率100%
可以使用Python字符串的replace()方法或正则表达式来去除文本中的换行符。以下是两种方法的示例:
1. 使用replace()方法
```python
text = "This is a \nmultiline\ntext."
new_text = text.replace('\n', '') # 使用replace()方法删除换行符
print(new_text)
```
输出:
```
This is a multilinetext.
```
2. 使用正则表达式
```python
import re
text = "This is a \nmultiline\ntext."
new_text = re.sub(r'\n', '', text) # 使用正则表达式删除换行符
print(new_text)
```
输出:
```
This is a multilinetext.
```
阅读全文