|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Grouping conditions
> <xsl:when test="@type='101' or @type='102' or @type='103' ...">
You may use intervals if @type contains numerical values :
<xsl:when test="@type > 100 and @type < 104">
You may use string functions otherwise:
<xsl:when test="starts-with(@type,'10')"> or
<xsl:when test="contains('101 102 103 ...',@type)">
to name a few...
Regards,
Gennady
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








