xsl-list
[Top] [All Lists]

AW: [xsl] Edit text-nodes with XSLT 2.0

2006-04-07 05:01:14

Incidentally, when I see a template rule whose body consists 
entirely of an xsl:choose, my preference is always to split 
it into one rule for each branch of the choose:

<xsl:template match="text()[not(string(.))]"/>

<xsl:template match="text()[string(.)]">
  <xsl:call-template name="find_char1"  >
  Some more stuff ...
</xsl:template>

This would also fix the priorities...



Thanks for the help. Both solution work fine.

Beat



Michael Kay
http://www.saxonica.com/



--~------------------------------------------------------------------
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>
--~--





--~------------------------------------------------------------------
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>
  • AW: [xsl] Edit text-nodes with XSLT 2.0, Beat Pfister <=