gpt4 book ai didi

python - 正则表达式从字符串中删除换行符

转载 作者:行者123 更新时间:2023-11-28 20:07:07 25 4
gpt4 key购买 nike

我正在使用 python,我需要一种快速的方法来删除字符串中所有\n 的实例。需要说明的是,这是我想要的示例。

"I went \n to the store\n"

成为

"I went to the store"

我在想也许正则表达式是最好的方式。

最佳答案

使用str.replace:

>>> "I went \n to the store\n".replace('\n', '')
'I went to the store'

对于等间距,您可以先使用 str.split 拆分字符串,然后使用 str.join 将其连接回去:

>>> ' '.join("I went \n to the store\n".split())
'I went to the store'

关于python - 正则表达式从字符串中删除换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18935859/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com