Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an int between 1 - 99. How do I get it to always be a double digit, ie: 01, 04, 21?

share|improve this question

9 Answers

up vote 5 down vote accepted

Yet another way

String text = (num < 10 ? "0" : "") + num;

EDIT: The code is short enough that the JIT can compile it to nothing. ;)

long start = System.nanoTime();
for(int i=0;i<100000;i++) {
    for(int num=1;num<100;num++) {
        String text = (num < 10 ? "0" : "") + num;
    }
}
long time = System.nanoTime() - start;
System.out.println(time/99/100000);

prints

0
share|improve this answer
Not sure why you got a -1, perfectly valid answer I'll even you out. – Shaded Mar 4 '11 at 17:53
@Shaded, Thank you. ;) – Peter Lawrey Mar 4 '11 at 17:54
@Peter Lawrey, not only that but your method is oodles faster. On a test using 1,000,000 random numbers from (0-100] using the same seed for each method and each one generating the numbers on their own your method has a avg time of 118 ns while the String.format method has an average time of 2666 ns. Downvote that! – Shaded Mar 4 '11 at 18:13
String.format isn't very efficient. it is more flexible. You might find that alot of the 118 ns was spent creating the random numbers. (0 wasn't in the OP question btw) try 1-99 repeatedly. – Peter Lawrey Mar 4 '11 at 18:19
@Peter Lawrey, I have no doubts that a lot of my time was done creating the numbers and I also had a printout that happened once every 100k iterations. I also realize that String.format is way more extendable than an int check (most of my college work was done in C printf ftw). I was just upset that you got down voted. – Shaded Mar 4 '11 at 18:28
show 1 more comment

Presumably you mean to store the number in a String.

Since JDK1.5 there has been the String.format() method, which will let you do exactly what you want:

String s = String.format("%02d", someNumber);

One of the nice things about String.format() is that you can use it to build up more complex strings without resorting to lots of concatenation, resulting in much cleaner code.

String logMessage = String.format("Error processing record %d of %d: %s", recordNumber, maxRecords, error);
share|improve this answer

You can do this with NumberFormat:

NumberFormat format = new NumberFormat();
format.setMinimumIntegerDigits(2);
System.out.println(format.format(1));

Note - String.format() is a Java 5 method.

If you're using Java 5 or above you can do:

String.format("%02d", 1);

as mentioned in other answers.

share|improve this answer
that should be "%02d", not "%2d", otherwise you'll not get the leading zero. – Jesper Mar 4 '11 at 20:54
thanks, corrected – Matthew Willis Mar 4 '11 at 21:24

Try this

String.format("%02d", num)
share|improve this answer

You can't do it just using an int. You'll have to convert between Strings (for display) and back to ints (for calculations). You can use the Java Formatter to format your Strings based on the input.

share|improve this answer

One possible solution:

String.valueOf(number + 100).substring(1);
share|improve this answer
1  
e‍‍‍‍w‍‍‍‍‍‍‍w‍‍w – BlueRaja - Danny Pflughoeft Mar 4 '11 at 17:41
Hey, I didn't say it was a good solution, just a solution :-) – William Brendel Mar 4 '11 at 23:40

You can do this by

String.format("%02d", 1)
share|improve this answer

Using

String.format("%02d", num)

Is probably the best option.

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.