Is there some easy way to pad Strings in Java.
seems like something that should be in some stringUtil like api but i cant find any.
|
3
|
Is there some easy way to pad Strings in Java. seems like something that should be in some stringUtil like api but i cant find any.
|
|||
|
|
|
|
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. |
||||
|
|
|
Besides Apache Commons, also see |
||
|
|
|
|
Since 1.5, String.format() can be used to left/right pad a given string.
|
||
|
|
|
Have a look at But the algorithm is very simple (pad right up to size chars):
|
||||||
|
|
|
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! ;-) |
||
|
|
|
[I've left out the details and made this post 'community wiki' as it is not something I have a need for.] |
|||
|
|