vote up 7 vote down star
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.

flag

54% accept rate

6 Answers

vote up 6 vote down check

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.

link|flag
1  
java.util.Formatter (and String.format()) does this. Always prefer the JDK to an external library if the JDK version does the job (which it does). – cletus Dec 23 '08 at 12:02
vote up 11 vote down

Besides Apache Commons, also see String.format which should be able to take care of simple padding (e.g. with spaces).

link|flag
vote up 4 vote down

Since 1.5, String.format() can be used to left/right pad a given string.

public static String padRight(String s, int n) {
     return String.format("%1$-" + n + "s", s);  
}

public static String padLeft(String s, int n) {
    return String.format("%1$#" + n + "s", s);  
}

...

public static void main(String args[]) throws Exception {
 System.out.println(padRight("Howto", 20) + "*");
 System.out.println(padLeft("Howto", 25) + "*");
}
/*
  output :
     Howto               *
                         Howto*
*/
link|flag
What if you need to lpad with other chars (not spaces) ? Is it still possible with String.format ? I am not able to make it work... – Guido GarcĂ­a Aug 11 at 15:48
vote up 1 vote down

Have a look at org.apache.commons.lang.StringUtils#rightPad(String str, int size, char padChar).

But the algorithm is very simple (pad right up to size chars):

public String pad(String str, int size, char padChar)
{
  StringBuffer padded = new StringBuffer(str);
  while (padded.length() < size)
  {
    padded.append(padChar);
  }
  return padded.toString();
}
link|flag
1  
Note that as of Java 1.5 it's worth using StringBuilder instead of StringBuffer. – Jon Skeet Dec 23 '08 at 9:34
You are right, it would be better to use if Java 5 is set. – Arne Burmeister Dec 23 '08 at 22:00
vote up 0 vote down

You can reduce the per-call overhead by retaining the padding data, rather than rebuilding it every time:

public class RightPadder {

    private int length;
    private String padding;

    public RightPadder(int length, String pad) {
        this.length = length;
        StringBuilder sb = new StringBuilder(pad);
        while (sb.length() < length) {
            sb.append(sb);
        }
        padding = sb.toString();
   }

    public String pad(String s) {
        return (s.length() < length ? s + padding : s).substring(0, length);
    }

}

As an alternative, you can make the result length a parameter to the pad(...) method. In that case do the adjustment of the hidden padding in that method instead of in the constructor.

(Hint: For extra credit, make it thread-safe! ;-)

link|flag
That is thread safe, except for unsafe publication (make your fields final, as a matter of course). I think performance could be improved by doing a substring before the + which should be replaced by concat (strangely enough). – Tom Hawtin - tackline Dec 24 '08 at 12:44
vote up 0 vote down

java.util.Formatter will do left and right padding. No need for odd third party dependencies (would you want to add them for something so trivial).

[I've left out the details and made this post 'community wiki' as it is not something I have a need for.]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.