xml – XPath查询搜索具有特定文本的元素
发布时间:2020-12-16 08:01:30 所属栏目:百科 来源:网络整理
导读:给出以下XML结构 html body div spanTest: Text2/span /div div spanTest: Text3/span /div div spanTest: Text5/span /div /body/html 什么是最好的XPath查询以查找以Test开头的文本的任何跨度? //span[starts-with(.,'Test')] 参考文献: http://www.w3.o
给出以下XML结构
<html> <body> <div> <span>Test: Text2</span> </div> <div> <span>Test: Text3</span> </div> <div> <span>Test: Text5</span> </div> </body> </html> 什么是最好的XPath查询以查找以Test开头的文本的任何跨度? //span[starts-with(.,'Test')] 参考文献: http://www.w3.org/TR/xpath/#function-starts-with https://developer.mozilla.org/en-US/docs/Web/XPath/Functions/starts-with (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |