$ xmlstarlet sel -t -c "//str[@name="id" and .="http://localhost:8080/index.html"]/../str[@name="doc-norm"]"/value results.xml
我的理解是xmlstarlet
并不完全支持xpath表达式。 BTW还有其他命令行工具吗?
<doc>
<str name="id">http://localhost:8080/index.html</str>
<str name="doc-norm">6</str>
</doc>
答案 0 :(得分:2)
您是否尝试从示例中返回6
?
我没有xmlstarlet来测试它,但尝试这个XPath:
//*[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm']
当它的父元素具有子str
元素时,它应该返回name
元素的doc-norm
属性的值,其值为str
id
属性,其值为http://localhost:8080/index.html
。 (我希望这是有道理的!)
我还应该补充一点,如果您知道父元素的级别是什么,请尽量避免使用//
。像/doc[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm']
之类的东西会更有效率。
<强>更新强>
我下载了xmlstartlet进行测试,它运行正常,但它返回整个str
元素。如果只需要文本,请将text()
添加到XPath的末尾:
//*[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm']/text()