JAVA去掉字符串前面的0

String str = "000000001234034120";
String newStr = str.replaceAll("^(0+)", "");
System.out.println(newStr);
相关文章
相关标签/搜索