11 00123 -> 123 000101 -> 101 101 -> 101 000002500 -> 2500 我试过: -6ren">
gpt4 book ai didi

java - 如何创建正则表达式以删除字符串开头的所有 `"0"`?

转载 作者:行者123 更新时间:2023-12-04 00:34:48 26 4
gpt4 key购买 nike

如何删除字符串开头的所有"0"

00011 -> 11
00123 -> 123
000101 -> 101
101 -> 101
000002500 -> 2500

我试过:

            Pattern pattern = Pattern.compile("([1-9]{1}[0-9]?+)");
Matcher matcher = pattern.matcher("00049");
matcher.matches();
whatYouNeed = matcher.group();

我有错误:找不到匹配项

最佳答案

我会试试

System.out.println("Status: " + "00012010003".replaceAll("^0+", ""));   

或仅正则表达式:

yourString.replaceAll("^0+", "");

在哪里

^ - matches only at start of string
0 - matches literal zeroes
+ - matches consecutive zeroes (at least one)

关于java - 如何创建正则表达式以删除字符串开头的所有 `"0"`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34194413/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com