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

RE: Removing leading zeros

Subject: RE: Removing leading zeros
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Sat, 25 Jan 2003 10:46:52 -0000
remove leading zeros java
string(number($x) should do the job.

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx 

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> Nischal Muthana
> Sent: 24 January 2003 23:58
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  Removing leading zeros 
> 
> 
> Hi All
> 
> I have a Java function which removes leading zeros
> from a given string value and returns me the number.
> 
> Eg. 
> 
> 000125000 -- 125000
> 0012300  -- 12300
> 01234 -- 1234
> 
> public static String removeLeadingZeros(String str) 
> 	{    
> 		if (str == null) 
> 		{        
> 			return null;    
> 		}   
> 		char[] chars = str.toCharArray();
> 		int index = 0;
> 		for (; index < str.length(); index++) 
> 		{       
> 			if (chars[index] != '0') 
> 			{            
> 				break;       
> 			}    
> 		}    
> 		return (index == 0) ? str : str.substring(index);
> 	}
> 
> Can someone help me build something like this in XSL.
> I dont mean you to write for the script, but atleast
> help me in taking thru what I have to do to get to
> this.
> 
> Appreciate your time.
> 
> Thanks
> Nischal 
> 
> 
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now. 
http://mailplus.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.