我怎样才能简单地使用这个 xpath 以便 xmlstartlet 可以使用它?

发布于 2024-11-08 18:07:05 字数 389 浏览 0 评论 0原文

$ xmlstarlet sel -t -c "//str[@name="id" and .="http://localhost:8080/index.html"]/../str[@name="doc-norm"]"/value results.xml

我的理解是 xmlstarlet 不完全支持 xpath 表达式。顺便说一句,还有其他命令行工具吗?

<doc>
    <str name="id">http://localhost:8080/index.html</str>
    <str name="doc-norm">6</str>
</doc>
$ xmlstarlet sel -t -c "//str[@name="id" and .="http://localhost:8080/index.html"]/../str[@name="doc-norm"]"/value results.xml

My understanding is that xmlstarlet doesn't fully support xpath expressions. Is there any other command-line tool that does BTW?

<doc>
    <str name="id">http://localhost:8080/index.html</str>
    <str name="doc-norm">6</str>
</doc>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遥远的绿洲 2024-11-15 18:07:05

您是否尝试从示例中返回 6

我没有 xmlstarlet 来测试它,但尝试这个 XPath:

//*[str[@name='id']='http://localhost:8080/index.html']/str[ @name='doc-norm']

这应该返回 str 元素的值,该元素的 name 属性的值为 doc-当其父元素具有子 str 元素时,该子元素具有值为 http://localhost:8080/index.normid 属性。 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()

Are you trying to return the 6 from your example?

I don't have xmlstarlet to test this on, but try this XPath:

//*[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm']

This should return the value of a str element that has a name attribute with a value of doc-norm when its parent element has a child str element that has an id attribute with a value of http://localhost:8080/index.html. (I hope that makes sense!)

I should also add that if you know what the level of the parent element is, try to avoid using the //. Something like /doc[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm'] would be more efficient.

UPDATE

I downloaded xmlstartlet to test and it works fine, however it returns the entire str element. If you want the text only, add text() to the end of the XPath:

//*[str[@name='id']='http://localhost:8080/index.html']/str[@name='doc-norm']/text()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文