我怎样才能简化这个xpath,以便xmlstarlet能够使用它?

时间:2011-05-20 18:37:36

标签: xml command-line xpath xmlstarlet

$ 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>

1 个答案:

答案 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()