我希望能够通过文本值搜索 xml 格式的文件并返回它所属的 id。我在 xml 命令中查看了 python 库,但只看到了按元素/节点搜索的示例。我在下面有一个简化的 xml 示例,例如,我想搜索“3x3 Eyes”并返回“2”。它还应该搜索确切的文本减去大小写。每个动漫下通常会有多个标题条目,因此搜索可以在第一场比赛中停止。谢谢
<?xml version="1.0" encoding="UTF-8"?>
<animetitles>
<anime aid="1">
<title type="official" xml:lang="fr">Crest of the Stars</title>
<title type="official" xml:lang="fr">Crest of the Stars</title>
</anime>
<anime aid="2">
<title type="official" xml:lang="en">3x3 Eyes</title>
</anime>
<anime aid="3">
<title type="official" xml:lang="en">3x3 Eyes: Legend of the Divine Demon</title>
</anime>
</animetitles>