|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: starts-with any number
> But what is the correct syntax if I want to know if this variable starts
> with any number, 0 to 9?
you are not going to like the answer...
<xsl:choose>
<xsl:when test="starts-with($variable, '0')">
...do something... 0
</xsl:when>
<xsl:when test="starts-with($variable, '1')">
...do something... 1
</xsl:when>
.
.
.
or if you want to do the same thing in all ten cases, then not much nicer
<xsl:if test="
starts-with($variable, '0') or starts-with($variable, '1') or ...
">
...do something...
</xsl:if>
David
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








