This is how I left pad a string with zeroes:
String.format("%16s", cardTypeString.trim()).replace(' ', '0');
Is there a better way to do this? I don't like the .replace(' ', '0') part.
.replace(' ', '0')
No comments:
Post a Comment