加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

如何检查xml中是否存在元素使用xpath?

发布时间:2020-12-16 08:08:05 所属栏目:百科 来源:网络整理
导读:下面是我的元素层次结构。如何检查(使用xpath)AttachedXml元素存在于主消费者的CreditReport下 Consumers xmlns="http://xml.mycompany.com/XMLSchema" Consumer subjectIdentifier="Primary" DataSources Credit CreditReport AttachedXml![CDATA[ blah bla
下面是我的元素层次结构。如何检查(使用xpath)AttachedXml元素存在于主消费者的CreditReport下
<Consumers xmlns="http://xml.mycompany.com/XMLSchema">
       <Consumer subjectIdentifier="Primary">
          <DataSources>
               <Credit>
                   <CreditReport>
                      <AttachedXml><![CDATA[ blah blah]]>
使用 boolean() XPath function

The boolean function converts its
argument to a boolean as follows:

  • a number is true if and only if
    it is neither positive or negative
    zero nor NaN

  • a node-set is true if and only if
    it is non-empty

  • a string is true if and only if
    its length is non-zero

  • an object of a type other than
    the four basic types is converted to a
    boolean in a way that is dependent on
    that type

如果主消费者的CreditReport中有AttachedXml,那么它将返回true()。

boolean(/mc:Consumers
          /mc:Consumer[@subjectIdentifier='Primary']
            //mc:CreditReport/mc:AttachedXml)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读