Dave's Brain

Browse - programming tips - javascript zero pad

Date: 2007oct11
Language: javaScript

Q. javaScript has no sprintf() ... how can I zero pad a number?

A.  Use this function:

// n = number you want padded
// digits = length you want the final output
function zeroPad(n, digits) {
	n = n.toString();
	while (n.length < digits) {
		n = '0' + n;
	}
	return n;
}

function exampleUse() {
	var	a;

	// Pad 123 to 8 digits
	a = zeroPad(123, 8);
	alert('a='+ a);
}
What this info useful to you? You can donate to say thanks

Add a comment

Sign in to add a comment
Copyright © 2008-2012, dave - Code samples on Dave's Brain is licensed under the Creative Commons Attribution 2.5 License. However other material, including English text has all rights reserved.
Advertisements: