DEV Community

Fatih Şahin
Fatih Şahin

Posted on

XSLT

XSLT, Suppress, Multi string

<xsl:for-each select="//n1:DespatchAdvice/cbc:Note">
<xsl:if test="not(contains(., 'Fatura Adresi')) and not(contains(., 'Sevk Adresi'))">
<b>&#160;&#160;&#160;&#160;&#160;&#160;Not: </b>
<xsl:value-of select="."/>
<br/>
</xsl:if>
</xsl:for-each>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)