XPath - 修剪和开头一起(删除空格)
我有这样的 XML:
<div class="errorMessage">
<ul>
<li>
<a href="...">
ABC - efg
</a>
<a href="...">
HIJ - klm
</a>
</li>
</ul>
</div>
如何选择以“ABC”开头的链接文本? 我需要修剪“a”的“text()”并在其上应用“starts-with()”。 我有这样的东西,但它不起作用:
//div[@class='errorMessage']/.//a[starts-with(normalize-space(./text())),'ABC')]/text()
I have XML like this:
<div class="errorMessage">
<ul>
<li>
<a href="...">
ABC - efg
</a>
<a href="...">
HIJ - klm
</a>
</li>
</ul>
</div>
How do I select link's text which starts with "ABC"?
I need to trim the "text()" of "a" and apply "starts-with()" on it.
I have something like this, but it doesn't work:
//div[@class='errorMessage']/.//a[starts-with(normalize-space(./text())),'ABC')]/text()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
//div[@class='errorMessage']//a[starts-with(normalize-space(.), 'ABC')]/text()
This ought to work:
//div[@class='errorMessage']//a[starts-with(normalize-space(.), 'ABC')]/text()