**已关闭。**此问题需要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")'
2条答案
按热度按时间enxuqcxy1#
如果你不想使用正则表达式,那么试试- string.find
输出编号
bvpmtnay2#
您可以使用以下模式
\"\w\",\"\w\",\"\w\"
: