gpt4 book ai didi

python - 附加字符串以匹配子字符串

转载 作者:行者123 更新时间:2023-12-05 03:34:41 25 4
gpt4 key购买 nike

我有以下字符串

test = "if row['adm.w'] is 'Bad' and row['rem'] not empty"

我想为那些 row[...] 的标记添加 str(...),如何在正则表达式中执行此操作?我想出了这个,但它没有按预期工作:

re.sub(r"'([^row[']*)'", r"str(['\1'])", test)

我希望最终结果是

test = "if str(row['adm.w']) is 'Bad' and str(row['rem']) not empty"

最佳答案

这应该有效:

>>> re.sub(r"(row\[.*?\])", r"str(\1)", test)
"if str(row['adm.w']) is 'Bad' and str(row['rem']) not empty"

关于python - 附加字符串以匹配子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70106286/

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