admin管理员组文章数量:1340368
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/, "")
- 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
2 Answers
Reset to default 10You 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.
本文标签: javascriptRemove first character from a string if it is 0Stack Overflow
版权声明:本文标题:javascript - Remove first character from a string if it is 0 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743619767a2511332.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论