“ilanlar\u0131 2808”,“计数”。如何在 python 中使用-6ren">
gpt4 book ai didi

python - 使用正则表达式删除数字

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

我只想删除 "ilanlar\u0131 1214", "count"" 中的 1214" 或删除 中的 2808" >“ilanlar\u0131 2808”,“计数”。如何在 python 中使用正则表达式?

我试过这段代码。

for line in fileinput.input('sektorler.json', inplace=True):

print(line.replace("^\d+\," , ""))

最佳答案

您需要使用 re.sub 将正则表达式作为第一个参数。 replace 方法必须以字符串作为参数。

re.sub(r'\d+"', "", strin)

关于python - 使用正则表达式删除数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30694523/

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