Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use a .format method of a string. But if I place %1, %2 etc in the string, java.util.UnknownFormatConversionException is thrown pointing to a confusing Java source code piece:


private void checkText(String s) {
  int idx;
  // If there are any '%' in the given string, we got a bad format
  // specifier.
  if ((idx = s.indexOf('%')) != -1) {
  char c = (idx > s.length() - 2 ? '%' : s.charAt(idx + 1));
  throw new UnknownFormatConversionException(String.valueOf(c));
  }
}

From this I understand that % char is forbidden. If so, then what to use for argument placeholders?

I use Scala 2.8.

share|improve this question

6 Answers

up vote 85 down vote accepted

While all the previous responses are correct, they're all in Java. Here's a Scala example:

val placeholder = "Hello %s, isn't %s cool?"
val formatted = placeholder.format("Ivan", "Scala")

I also have a blog post about making format like Python's % operator that might be useful.

share|improve this answer
10  
Naming the variable "string" burns some extra brain cpu cylces to realize its not the type, but just a variable name. Just want to point out that such small things can make a difference when explaining something. – ThomasS Sep 7 '12 at 14:32
1  
Good point, I'll fix that. – pr1001 Sep 7 '12 at 19:04
4  
+1 for the tailored message to Ivan! – Limited Atonement Jan 3 at 21:36

You don't need to use numbers to indicate positioning. By default, the position of the argument is simply the order in which it appears in the string.

Here's an example of the proper way to use this:

String result = String.format("The format method is %s!", "great");
// result now equals  "The format method is great!".

You will always use a % followed by some other characters to let the method know how it should display the string. %s is probably the most common, and it just means that the argument should be treated as a string.

I won't list every option, but I'll give a few examples just to give you an idea:

// we can specify the # of decimals we want to show for a floating point:
String result = String.format("10 / 3 = %.2f", 10.0 / 3.0);
// result now equals  "10 / 3 = 3.33"

// we can add commas to long numbers:
result = String.format("Today we processed %,d transactions.", 100000);
// result now equals  "Today we processed 1,000,000 transactions."

String.format just uses a java.util.Formatter, so for a full description of the options you can see the Formatter javadocs.

And, as BalusC mentions, you will see in the documentation that is possible to change the default argument ordering if you need to. However, probably the only time you'd need / want to do this is if you are using the same argument more than once.

share|improve this answer

Instead of looking at the source code, you should read the javadoc String.format() and Formatter syntax

You specify the format of the value after the %, for instance for decimal integer is d, for String is s :

String aString = "world";
int aInt = 20;
String.format("Hello, %s on line %d",  aString, aInt );

output:

Hello, world on line 20

To do what you tried ( use an argument index ) you use: n$

String.format("Line:%2$d. Value:%1$s. Result: Hello %1$s at line %2$d", aString, aInt );

output

Line:20. Value:world. Result: Hello world at line 20
share|improve this answer

Also note that Scala extends String with a number of methods (via implicit conversion to a WrappedString brought in by Predef) so you could also do the following:

val formattedString = "Hello %s, isn't %s cool?".format("Ivan", "Scala")
share|improve this answer

Here you are official the reference:

http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html

share|improve this answer

Here is a list of formatters used with String.format()

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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