Possible Duplicate:
Truncate leading zeros of a string in Javascript

What is the simplest and cross-browser compatible way to remove leading zeros in Javascript ?

e.g. If I have a textbox value as 014 or 065, it should only return 14 or 65

Thank you.

link|improve this question

2  
What for? Do you want to format the text in the field or do you just want to get the correct decimal value? parseInt takes a second parameter, the radix, which should always be set! Set it to 10. – Felix Kling Jul 13 '11 at 9:01
@felix. you already typed this as a comment :) +1 for that unary + didn't think of it. – naveen Jul 13 '11 at 9:12
feedback

closed as exact duplicate by casperOne Nov 26 '11 at 5:31

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 1 down vote accepted

Try parseInt. parseInt("065", 10);

link|improve this answer
It isn't clear from the question if it's ever the case, but this also removes anything after the decimal point. – pimvdb Jul 13 '11 at 9:10
yes. thats correct :) – naveen Jul 13 '11 at 9:18
parseInt("08") == 0, it's a bug, use another answer. – Greg Dec 9 '11 at 21:50
@Greg. Thanks for the info. But I did not get the relevance. parseInt("08", 10) is indeed 8 – naveen Dec 11 '11 at 11:01
feedback

regexp:

"014".replace(/^0+/, '')
link|improve this answer
feedback

It is not clear why you want to do this. If you want to get the correct numerical value, you could use unary + [docs]:

value = +value;

If you just want to format the text, then regex could be better. It depends on the values you are dealing with I'd say. If you only have integers, then

input.value = +input.value;

is fine as well. Of course it also works for float values, but depending on how many digits you have after the point, converting it to a number and back to a string could (at least for displaying) remove some.

link|improve this answer
For some reasons, this is not working...See jsfiddle.net/8pYXH – testndtv Jul 13 '11 at 9:27
@hmthr: You did not assign a string to x, but a number. With a leading zero it will be interpreted as octal value. Print x and you will see that this value is already 13. Using a string works: jsfiddle.net/fkling/8pYXH/1 – Felix Kling Jul 13 '11 at 9:31
So finally will it still be a string ...I want the final value should be an integer... – testndtv Jul 13 '11 at 9:38
@hmthr: No. The value you get from field will be a string. After applying unary + it will be a number (as it is written in the documentation). See: jsfiddle.net/fkling/8pYXH/3 – Felix Kling Jul 13 '11 at 9:47
feedback

You must use this code for truncating leading zeros:

<script language="JavaScript" type="text/javascript">
<!--
function trimNumber(s) {
  while (s.substr(0,1) == '0' && s.length>1) { s = s.substr(1,9999); }
  return s;
}

var s1 = '00123';
var s2 = '000assa';
var s3 = 'assa34300';
var s4 = 'ssa';
var s5 = '121212000';

alert(s1 + '=' + trimNumber(s1));
alert(s2 + '=' + trimNumber(s2));
alert(s3 + '=' + trimNumber(s3));
alert(s4 + '=' + trimNumber(s4));
alert(s5 + '=' + trimNumber(s5));
// end hiding contents -->
</script>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.