在XPath中如何选择元素内容
有没有办法编写 XPath 表达式来选择元素的内容。
例如,
<Element>xxx</Element>
假设我可以编写 XPath (/Element) 来获取 Element
我如何调整 XPath 以获得 xxxx 返回而不是 Element 包装器?
编辑/答案
要在 dom4j 世界中执行此操作,请使用 Element.valueOf(String xpathExpression)
而不是 .selectXXX() 方法。
Is there a way of writing an XPath expression to select the content of the element.
e.g.
<Element>xxx</Element>
Assuming I can write XPath (/Element) to get Element
how do I tweak the XPath to get xxxx returned rather than the Element wrapper?
EDIT/ANSWER
To do this in dom4j world use the Element.valueOf(String xpathExpression)
rather than the .selectXXX() methods.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
value-of
元素:如果您只能指定 XPath,则使用
text
函数,如下所示:Use the
value-of
element:If you can only specify an XPath then use the
text
function like this:有点晚了,但是
……应该没问题。
A bit too late but...
...should also be fine.