JAVA去掉字符串前面的0

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