[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Xslt 2 stripping out non-numbers


Subject: Re: [xsl] Xslt 2 stripping out non-numbers
From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
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

--- Jim Neff <jneff@xxxxxxxxxxxxxxx> wrote:
> I need to strip out non-numerical values from a
> string.  
> 
> Here is a sample input value:  TUV0062
> 
> And what I want is :  0062  (or just 62)

> Thanks,
> Jim
> 
> 


		
__________________________________ 
Do you Yahoo!? 
Plan great trips with Yahoo! Travel: Now over 17,000 guides!
http://travel.yahoo.com/p-travelguide


Current Thread