javascript - Remove first character from a string if it is 0 - Stack Overflow

admin2025-04-03  0

I know it is related to Remove first character from a string if it is a ma but in this case that solution doesn't work for me. Maybe its because now I'm dealing with a number. Simply I want javascript to remove 0 from 08 but don't touch 10; only remove 0 when it is the first character.

This solution doesn't work: replace(/^0/, "")

I know it is related to Remove first character from a string if it is a ma but in this case that solution doesn't work for me. Maybe its because now I'm dealing with a number. Simply I want javascript to remove 0 from 08 but don't touch 10; only remove 0 when it is the first character.

This solution doesn't work: replace(/^0/, "")

Share Improve this question edited May 23, 2017 at 12:29 CommunityBot 11 silver badge asked Nov 5, 2015 at 12:08 newzadnewzad 7061 gold badge15 silver badges31 bronze badges 4
  • Beucase, apparently he is trying to call it on a Number i think. – mic4ael Commented Nov 5, 2015 at 12:10
  • 4 use parseInt(). Integers dont have a leading zero. – pmayer Commented Nov 5, 2015 at 12:12
  • parseInt("08", 10); – Rahul Tripathi Commented Nov 5, 2015 at 12:12
  • What do you mean, "it doesn't work"? Are you calling .replace() on a string that starts with "08"? If so, how is the result incorrect? – Tim Pietzcker Commented Nov 5, 2015 at 12:25
Add a ment  | 

2 Answers 2

Reset to default 10

You can try this:

alert("08".replace(/^0+/, ''));

DEMO

And if you are dealing with numbers then you can use parseInt() function.

Easy way with regex :

^0+(?!$)

and feel free to use String replaceFirst function.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743619769a213654.html

最新回复(0)