RE: [xsl] What is the equivalent

Subject: RE: [xsl] What is the equivalent
From: "Josh Canfield" <Josh.Canfield@xxxxxxxxxxxx>
Date: Mon, 22 Mar 2004 11:23:33 -0800
If you know all the delimiters you could remove them with something like this:

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

Josh

-----Original Message-----
From: Kotes Mogili [mailto:Kotes.Mogili@xxxxxxxxxxxxxxxxx]
Sent: Monday, March 22, 2004 11:17 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] What is the equivalent 



Hi,

What is the equivalent of the following logic in XSL1.0. 

PhoneNumber=(678)898-4274
for (int i = 0; i < phoneNumber.length(); i++) {
                if (Character.isDigit(phoneNumber.charAt(i))) out = out + phoneNumber.charAt(i);
            }

Thanks for the help...

Thanks
Kotes

Current Thread