在Python中使用RegEx获取标记内的值[已关闭]

daupos2t  于 2022-12-30  发布在  Python
关注(0)|答案(2)|浏览(98)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
我想用Python中的RegEx获取标记内的值
我想从标记内部获取的值:
“甲”、“B”、“丙”
此标签:

tagstring = 'tag("a","b","c")'
enxuqcxy

enxuqcxy1#

如果你不想使用正则表达式,那么试试- string.find

tagstring = 'tag("a","b","c")'
mask = tagstring[tagstring.find("(")+1:tagstring.find(")")]
print(mask)

输出编号

"a","b","c"
bvpmtnay

bvpmtnay2#

您可以使用以下模式\"\w\",\"\w\",\"\w\"

import re
txt = 'tag("a","b","c")'
re.findall('\"\w\",\"\w\",\"\w\"', txt)

相关问题