Answers for "calculate leading zeros in a string"

13

python convert number to string with leading zeros

str(1).zfill(2)
# 1 will be '01'

str(23).zfill(4)
# 23 will be '0023'
Posted by: Guest on July-24-2020
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 "calculate leading zeros in a string"

Python Answers by Framework

Browse Popular Code Answers by Language