br.com.caelum.stella.boleto.utils.StellaStringUtils Maven / Gradle / Ivy
package br.com.caelum.stella.boleto.utils;
public class StellaStringUtils {
private static final String ZERO = "0";
public static String leftPadWithZeros(String input, int expectedSize){
if( input == null ) {
return leftPadWithZeros("", expectedSize);
}
StringBuilder sb = new StringBuilder(expectedSize);
for (int i = expectedSize - input.length(); i>0; i-- ){
sb.append(ZERO);
}
sb.append(input);
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy