This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: left zero pad digit string


Joel writes:
> Padding a number:
> Requirement: zero pad a digit string 
> Example: 456 --> 000456
> Where the new string length is a passed parameter to the 
> padding template.

Joel,

I believe that format-number( "456", "000000" )
would return "000456". The 2nd arg is the format
pattern.

In your case, the number of zeroes in the format
pattern must be equal to the "new string length."
You can use the substring function to construct
a format pattern with the appropriate number of 
zeroes as follows:

substring( $long_string_of_zeroes, 1, $new_string_length )

Note that I haven't tested any of this.
Hope it helps.

Bob

<sig name    = 'Bob Lyons'
     title   = 'E-Commerce Consultant'
     company = 'Unidex, Inc.'
     phone   = '+1-732-975-9877'
     email   = 'boblyons@unidex.com'
     url     = 'http://www.unidex.com/'
     plug    = 'Home of XML Convert'   />


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]