gpt4 book ai didi

regex - Python正则表达式匹配元组对

转载 作者:行者123 更新时间:2023-12-01 08:48:56 25 4
gpt4 key购买 nike

寻找一个正则表达式来匹配列表中的元组对。一直在使用下面的正则表达式

s = '[(aleakedteaserand, NN), (abehind, IN), (the, DT)]'    
re.findall(r'\((.*,.*)\)',s)

但它仍然缺少结束大括号。
['aleakedteaserand, NN), (abehind, IN), (the, DT']

预期输出:

[(aleakedteaserand, NN), (abehind, IN), (the, DT)]

最佳答案

你没有让 RegEx 变得不贪婪。解决方案是 re.findall(r'\((.*?,.*?)\)',s)

关于regex - Python正则表达式匹配元组对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48030275/

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