RE: [xsl] What is the equivalent

Subject: RE: [xsl] What is the equivalent
From: "Kotes Mogili" <Kotes.Mogili@xxxxxxxxxxxxxxxxx>
Date: Mon, 22 Mar 2004 14:58:39 -0500
Josh,

Thanks for the help, using Michael's solution..
Thanks.
Kotes


 -----Original Message-----
From: 	Josh Canfield [mailto:Josh.Canfield@xxxxxxxxxxxx] 
Sent:	Monday, March 22, 2004 2:24 PM
To:	xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:	RE: [xsl] What is the equivalent 

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