将一个字符串中包含有\r,消除这个\r 给出代码
时间: 2023-07-22 21:02:23 浏览: 125
正则表达式清除html标签
5星 · 资源好评率100%
当我们想要消除字符串中的 `\r` 字符时,可以使用字符串的 `replace` 方法来替换它。下面是一个示例代码:
```python
string_with_r = "Hello\rWorld\r\n"
string_without_r = string_with_r.replace("\r", "")
print(string_without_r) # 输出: HelloWorld
```
在上面的代码中,我们使用 `replace` 方法将 `\r` 替换为空字符串 `""`,这样就可以将字符串中的 `\r` 删除掉。
阅读全文