gpt4 book ai didi

python - 如何删除括号内的内容而不删除括号

转载 作者:行者123 更新时间:2023-12-03 13:58:49 25 4
gpt4 key购买 nike

string="file()(function)(hii)out(return)(byee)"
对于这个字符串,我需要像这样的输出
file()()()out()()
我试过这个
string="file()(function)(hii)out(return)(byee)"
string1=re.sub("[\(\[].*?[\)\]]", "", string)
string2=re.sub(r" ?\([^)]+\)", "", string)

print(string1)
print(string2)
并得到类似的输出
fileout

file()out
我想要的输出应该是这样的:
file()()()out()()

最佳答案

使用正则表达式:捕获括号之间的所有内容,即 (.*?) 并将其替换为空字符串,即 ( )

import re

x = "file()(function)(hii)out(return)(byee)"
x = re.sub("\(.*?\)", "()", x)
print(x)
这将打印

file()()()out()()

关于python - 如何删除括号内的内容而不删除括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66380970/

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