xsl-list
[Top] [All Lists]

conditional instruction vs. conditional expression

2005-01-27 08:09:54
What are the advantages and disadvantages of passing a string parameter
via a conditional instruction (XPath 1.0):

    <xsl:with-param name="content">
      <xsl:if test="mb3e:org_list/mb3e:org_code[(_at_)type='APPR' and
                                                text()='ANSI']">
        <xsl:text>*</xsl:text>
      </xsl:if>
    </xsl:with-param>

vs. via a conditional expression (XPath 2.0):

    <xsl:with-param name="content"
         select="if (mb3e:org_list/mb3e:org_code[(_at_)type='APPR' and
                                                 text()='ANSI'])
                 then '*'
                 else ''"/>

Thanks,
-- 
Kevin Rodgers


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>