Java中怎麼去掉數字字串開頭的0

github_zwl發表於2017-09-09

方式一:

例如:”0000123” (字串必須全為數字) 
處理過程:

String tempStr = "0000123"; 
int result = Integer.parseInt(tempStr); 
  • 1
  • 2

result 結果:123

方式二:

例如:”0000123” 
處理過程:

String str = "0000123";  
String newStr = str.replaceFirst("^0*", "");  
System.out.println(newStr);  
  • 1
  • 2
  • 3

列印結果:123

方式三:

例如:”0000123” 
處理過程:

String str = "0000123";  
String newStr = str.replaceAll("^(0+)", "");  
System.out.println(newStr);   
  • 1
  • 2
  • 3

列印結果:123

相關文章