how I can rewrite this:

for (int i = 0; i < numberOfSpaces; i++) {
    System.out.print(" ");
}

using String.format()?

PS

I'm pretty sure that this is possible but the javadoc is a bit confusing.

link

I dont think questions get the credit they deserve so upvoting! – willcodejavaforfood Jul 2 '09 at 11:48
feedback

2 Answers

up vote 13 down vote accepted

You need to specify the minimum width of the field.

String.format("%" + numberOfSpaces + "s", "");

Why do you want to generate a String of spaces of a certain length.

If you want a column of this length with values then you can do

String.format("%" + numberOfSpaces + "s", "Hello");

Will give you Hello followed by numberOfSpaces-5 at the end. If you want Hello to appear on the right then add a minus sign in before numberOfSpaces.

link
1  
in C I would write: printf("%.*s", numberOfSpacs, " "); without any string concatenation – dfa Jul 2 '09 at 11:23
3  
Or, if you're feeling saucy, String.format(String.format("%%%ds", numberOfSpaces), "") – skaffman Jul 2 '09 at 11:25
@skaffman: nicely meta :) – Jeremy Smyth Jul 2 '09 at 11:26
@skaffman: lol :))) – dfa Jul 2 '09 at 12:50
feedback
int numberOfSpaces = 3;
String space = String.format("%"+ numberOfSpaces +"s", " ");
link
I love it when a get a pity upvote for answering too late :) – willcodejavaforfood Jul 2 '09 at 11:48
You should be thankful for all the upvotes you just got for the int[] array conversion question! – Adamski Jul 2 '09 at 12:22
@Adamski - Thankful for all upvotes, but I was worried I would only get downvoted because people could not understand his question and the problem with Arrays.asList :) – willcodejavaforfood Jul 2 '09 at 12:27
feedback

Your Answer

 
or
required, but never shown

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