How to use starts-with() , contains() and ends-with() in XPath to find the xml node innertext? in XPATH 1.0

情到浓时终转凉″ 提交于 2019-12-17 09:48:05

问题


<ArticleBackmatter>
   <Heading>Ethical standards and patient consent</Heading>
   <Heading>Ethical standards and patient</Heading>
   <Heading>standards and patient consent</Heading>
</ArticleBackmatter>

I want to get the inner text with start from "Ethical" , contains "and " and end with "consent" in the Heading node.


回答1:


One possible way:

//Heading[starts-with(., 'Ethical') and ends-with(., 'consent')]

The ends-with() function is XPath 2.0. In XPath 1.0, it can be replaced using substring() and string-length(). Here is the equivalent XPath 1.0 (wrapped for readability):

//Heading[
            starts-with(., 'Ethical') 
                and 
            'consent' = substring(., string-length(.) - string-length('consent') +1)
         ]


来源:https://stackoverflow.com/questions/26217002/how-to-use-starts-with-contains-and-ends-with-in-xpath-to-find-the-xml-n

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!