在这个 xml 中,我希望匹配包含“ match”(Random 2 element)的元素
<root>
<random1>
<random2>match</random2>
<random3>nomatch</random3>
</random1>
</root>
好吧,目前为止我有:
//[re:test(.,'match','i')] (with re in the proper namespace)
这个函数返回随机数2,随机数1和根... 我只想得到随机数2
有什么想法吗?