你知道做 XQuery 查询来选择两个单例标签之间的内容吗,例如
<pb n="1"/>
this is <foo>page</foo> number one
<pb n="2"/>
this is <bar>page</bar> number two
<pb n="3"/>
this is <x>page</x> number three
我想要例如第二页的内容,所以 between<pb n="2"/>
和 next <pb/>
。输出应该是:
this is <bar>page</bar> number two