public static String padLeft(String src, char padWith, int totalLen)
A new padded string.
Pads the string with a specified character.
The following call returns 1234500000:
padRight("12345", '0', 10);
The following call returns 123456:
padRight("123456", '0', 5);