Answers for "repalce all the 0 in string with zero"

1

replace 2 leading zeros from string

String str = "00051700";
String strPattern = "^0+";        
System.out.println( "String: " + str.replaceAll(strPattern, "") );
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language