我的 xml 代码中有多个要解析的项目。我不太确定该怎么做,任何帮助将不胜感激。下面是我的 xml 和 python 代码片段以及我想要做什么。
XML
<doc>
<para>
<text> /PARSEME: ABC12345/ /PARSEME: ABC98765/ /PARSEME: FGB87654/
</text>
</parse>
</doc>
Python代码
def get_parseme(self, document):
match = self.getNodeContent(document.contents(), 'para', 'text', true)
match2 = re.search(r"PARSEME:\D{3}\d{5}", match, re.M|re.I)
if match2:
return match2.group()