gpt4 book ai didi

python - 从字符串中删除括号之间的内容

转载 作者:太空宇宙 更新时间:2023-11-03 13:23:13 29 4
gpt4 key购买 nike

我有这样一个字符串:

s = 'word1 word2 (word3 word4) word5 word6 (word7 word8) word9 word10'

如何删除括号中的所有内容,以便输出为:

'word1 word2 word5 word6 word9 word10'

我尝试了正则表达式,但似乎不起作用。有什么建议吗?

最佳雅克

最佳答案

import re
s = re.sub(r'\(.*?\)', '', s)

请注意,这只会删除括号内的所有内容。这意味着您将在“word2 和 word5”之间留下双倍空间。我终端的输出:

>>> re.sub(r'\(.*?\)', '', s)
'word1 word2 word5 word6 word9 word10'
>>> # -------^ -----------^ (Note double spaces there)

但是,您提供的输出并非如此。要删除多余的空格,您可以这样做:

>>> re.sub(r'\(.*?\)\ *', '', s)
'word1 word2 word5 word6 word9 word10'

关于python - 从字符串中删除括号之间的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6857296/

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