xsl-list
[Top] [All Lists]

Re: Xslt 2 stripping out non-numbers

2005-04-19 11:10:45
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(_at_)blockvision(_dot_)com> 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



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




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

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