Is there some easy way to pad Strings in Java?
Seems like something that should be in some StringUtil-like API, but I can't find anything that does this.
|
|
|
Apache StringUtils has several methods: leftPad, rightPad, center and repeat. http://www.jdocs.com/lang/2.1/org/apache/commons/lang/StringUtils.html [EDIT] As others have mentioned, String.format() and the Formatter classes in the JDK are better options. Use them over the commons code. |
|||||||||||||
|
|
Since 1.5, String.format() can be used to left/right pad a given string.
|
|||||||||||||||||||||
|
|
Padding to 10 characters:
output:
Display '*' for characters of password:
output has the same length as the password string:
|
|||||
|
|
In Guava, this is easy:
|
|||||
|
|
Besides Apache Commons, also see |
|||
|
|
|
Have a look at But the algorithm is very simple (pad right up to size chars):
|
|||||||
|
|
This took me a little while to figure out. The real key is to read that Formatter documentation.
|
|||
|
|
|||||||
|
|
You can reduce the per-call overhead by retaining the padding data, rather than rebuilding it every time:
As an alternative, you can make the result length a parameter to the (Hint: For extra credit, make it thread-safe! ;-) |
|||
|
|
On the issue of the apache function vs the string formatter there is little doubt that the apache function is more clear and easy to read. Wrapping the formatter in function names isn't ideal. |
|||
|
|
|
Here is another way to pad to the right:
|
||||
|
|
|
i know this thread is kind of old and the original question was for an easy solution but if it's supposed to be really fast, you should use a char array.
the formatter solution is not optimal. just building the format string creates 2 new strings. apache's solution can be improved by initializing the sb with the target size so replacing below
with
would prevent the sb's internal buffer from growing. |
|||
|
|
|
This works:
It will fill your String XXX up to 9 Chars with a whitespace. After that all Whitespaces will be replaced with a 0. You can change the whitespace and the 0 to whatever you want... |
|||
|
|
|
|||
|
|
|
[I've left out the details and made this post 'community wiki' as it is not something I have a need for.] |
|||||
|
|
you can use the built in StringBuilder append() and insert() methods, for padding of variable string lengths:
For Example:
|
|||
|
|
|
A simple solution would be:
|
|||
|
|
|
How is this String is "hello" and required padding is 15 with "0" left pad
|
|||
|
|