Answers for "add leading zeros to string cpp"

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

Code answers related to "add leading zeros to string cpp"

Browse Popular Code Answers by Language