xsl-list
[Top] [All Lists]

Re: Xslt 2 stripping out non-numbers

2005-04-19 11:35:02
Nice! I was wondering whether somebody would point out the translate(translate(...)) idiom.

--A


From: Mukul Gandhi <mukul_gandhi(_at_)yahoo(_dot_)com>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Xslt 2 stripping out non-numbers
Date: Tue, 19 Apr 2005 11:10:45 -0700 (PDT)

Hi Jim,
  Please try this!

<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="2.0">

<xsl:output method="text" />

<xsl:variable name="includechars"
select="'0123456789'" />

<xsl:template match="/">
  <xsl:variable name="teststring" select="'TUV0062'"
/>

  <xsl:value-of select="translate($teststring,
translate($teststring,$includechars,''), '')" />
</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

_________________________________________________________________
On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement


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