[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Xslt 2 stripping out non-numbers

Subject: Re: Xslt 2 stripping out non-numbers
From: "Aron Bock" <aronbock@xxxxxxxxxxx>
Date: Tue, 19 Apr 2005 18:35:02 +0000
msn stripping
Nice! I was wondering whether somebody would point out the translate(translate(...)) idiom.

--A


From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.