gpt4 book ai didi

python - python中特殊符号前后插入空格

转载 作者:太空宇宙 更新时间:2023-11-03 15:58:34 24 4
gpt4 key购买 nike

我想使用 Python 预处理字符串。这是一个例子。

给定一个字符串

string = "hello... (world)!"

我想在特殊字符之前和之后插入空格,例如

desired_string = "hello . . . ( world ) !"

我找到了一种通过替换功能来做到这一点的方法。

string = string.replace(".", " . ")
string = string.replace("(", " ( ")
string = string.replace(")", " ) ")
string = string.replace("!", " ! ")

那么,

>>> string
'hello . . . ( world ) ! '

(此输出字符串的空格比desired_string多,但可以接受,因为我稍后会应用.split方法。)

但是代码很长,尤其是当出现多种类型的符号时。 (例如!、@、$、%、&、...)

我认为有更好的方法(也许使用re.sub?)有人可以展示更好的代码吗?

最佳答案

使用 re 在所需字符之前和之后添加空格:

import re

pat = re.compile(r"([.()!])")
print (pat.sub(" \\1 ", string))
# hello . . . ( world ) !

关于python - python中特殊符号前后插入空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40550349/

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