Issue
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.
Solution
Apache StringUtils has several methods: leftPad, rightPad, center and repeat.
But please note that — as others have mentioned and demonstrated in this answer — String.format() and the Formatter classes in the JDK are better options. Use them over the commons code.
Answered By - GaryF
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.