How to tell using XPath if an element is present and non empty?

感情迁移 提交于 2019-12-18 03:04:50

问题


I have an input XML something on this line:

<Holding id="12">
    <Policy>
        <HoldingForm tc="1">Individual</HoldingForm>
        <PolNumber>848433</PolNumber>
        <LineOfBusiness tc="1">Life</LineOfBusiness>
        <CarrierCode>67644</CarrierCode>
    </Policy>
</Holding>

My manipulation on this XML depends on if <PolNumber> (its an optional element in schema) has a value or not. I'm using Mule 3.3 xpath evaluator to do this and my XPath expression looks this:

<expression-filter expression="#[xpath('//acord:Holding/acord:Policy/acord:PolNumber').text != empty]"/> 

This works fine as long as <PolNumber> element is present or <PolNumber/> is empty element. But if <PolNumber> is absent, above expression throws exception.

I tried using XPath boolean function but it returns true for <PolNumber/>. Is there a better way of checking if an element is present and non-empty?

EDIT:

This is the configuration of namespace manager in my mule config

<xm:namespace-manager includeConfigNamespaces="true">
    <xm:namespace prefix="acord" uri="http://ACORD.org/Standards/Life/2" />
    <xm:namespace prefix="soap" uri="http://schemas.xmlsoap.org/soap/encoding/" />
</xm:namespace-manager>

回答1:


Use:

boolean(//acord:Holding/acord:Policy/acord:PolNumber/text()[1])

this produces true() if //acord:Holding/acord:Policy/acord:PolNumber has a first text-node child, and false() otherwise.

Do note: This is more efficient than counting all text-node children just to compare the count with 0.




回答2:


You can use boolean(...) for checking if it's empty, but make sure to look inside the element.

boolean(//PolNumber/node())

This also works if other nodes are contained. If you want to limit to text nodes, replace node() by text(). You could want to use //text() instead, then the query will also yield true for text nodes inside other child elements of <PolNumber/>.




回答3:


How about expression="#[?xpath('//acord:Holding/acord:Policy/acord:PolNumber').text != empty]" ? This should work in in all situations




回答4:


What about using count to get the number of text nodes:

<expression-filter
    expression="#[xpath('count(//Holding/Policy/PolNumber/child::text())') != 0]"/>



回答5:


Maybe I'm a bit late here, but answers are a bit confusing. This one will always returns false when text is blank or with spaces but no chars.

boolean//Holding/Policy/PolNumber/child/text()[normalize-space()]


来源:https://stackoverflow.com/questions/15909348/how-to-tell-using-xpath-if-an-element-is-present-and-non-empty

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