xsl-list
[Top] [All Lists]

Re: return?

2003-11-26 03:10:27
Bruno LLopes wrote:
Hi,
    Is possible in xslt use a return instruction when some condition occur
    and stop de verificaction  of  the remaining code
    like this
     <xsl:if test="string-length($str) <= 4>
        (terminate verificaction) <xsl:return /> (?)
</xsl:if>


yes you can
the <xsl:message/> can log a message and terminate the process

so 
<xsl:message terminate="yes">String too short...</xsl:message>

will stop the XSLT processor (can depend on processor implementation)

HTH

Frédéric
-- 
XPath free testing software :  http://lantern.sourceforge.net
Frédéric Laurent                     http://www.opikanoba.org

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>
  • RE: return?, JOHN MARSHALL
    • Re: return?, Frederic Laurent <=