Seems to be a trivial task but I can't see how to do that: I've got an integer and have to output it a s a 7-character-long String, so 123 is to turn into "0000123". Help please :-) Sorry for a silly question.

link|improve this question

70% accept rate
feedback

4 Answers

up vote 19 down vote accepted

The Java library has pretty good (as in excellent) number formatting support which is accessible from StringOps enriched String class:

scala> "%07d".format(123)
res5: String = 0000123

scala> "%07d".formatLocal(java.util.Locale.US, 123)
res6: String = 0000123
link|improve this answer
1  
Thank god there is a better answer than the others! – Ben Jackson Nov 15 '11 at 6:39
Yeah, there's only one good answer to this question, and the other responses are distressingly bad. – dhg Nov 15 '11 at 16:55
1  
Ben, dhg, thanks for the upvotes, you guys are a tough crowd though! I think we can still learn something from the other answers, and the voting system takes care of which answer is relevant. – huynhjl Nov 15 '11 at 17:24
Nice, I didn't know this one! – Sciss Nov 15 '11 at 17:48
feedback

Short answer:

"1234".reverse.padTo(7, "0").reverse.toString

Long answer:

Scala StringOps (which contains a nice set of methods that Scala string objects have because of implicit conversions) has a padTo method, which appends a certain amount of characters to your string. For example:

"aloha".padTo(10,"a")

Will return "alohaaaaaa" (actually it will return a Vector but it's not important for this case).

Your problem is a bit different since you need to prepend characters instead of appending them. That's why you need to reverse the string, append the fill-up characters (you would be prepending them now since the string is reversed), and then reverse the whole thing again to get the final result.

Hope this helps!

link|improve this answer
feedback

huynhjl beat me to the right answer, so here's an alternative:

"0000000" + 123 takeRight 7
link|improve this answer
feedback

Do you need to deal with negative numbers? If not, I would just do

def str( i: Int ) = (i % 10000000 + 10000000).toString.substring( 1 )

or

def str( i: Int ) = { val f = "000000" + i; f.substring( f.length() - 7 )}

Otherwise, you can use NumberFormat:

val nf = java.text.NumberFormat.getIntegerInstance( java.util.Locale.US )
nf.setMinimumIntegerDigits( 7 )
nf.setGroupingUsed( false )
nf.format( -123 )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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