DEV Community

Fatih Şahin
Fatih Şahin

Posted on

XSLT not contains

<xsl:for-each select="//n1:Invoice/cbc:Note">
<xsl:if test="not(contains(., '3065 sayılı')) and not(contains(., 'FTutar')) and . !='' and .!= //n1:Invoice/cac:AccountingCustomerParty/cac:Party/cac:PartyName/cbc:Name">
<xsl:value-of select="." />
<br />
</xsl:if>
</xsl:for-each>

Top comments (0)