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.
|
feedback
|
|
The Java library has pretty good (as in excellent) number formatting support which is accessible from StringOps enriched String class:
| |||||||||||||
feedback
|
|
Short answer:
Long answer: Scala StringOps (which contains a nice set of methods that Scala string objects have because of implicit conversions) has 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! | ||||
|
feedback
|
|
huynhjl beat me to the right answer, so here's an alternative:
| |||
|
feedback
|
|
Do you need to deal with negative numbers? If not, I would just do
or
Otherwise, you can use
| ||||
|
feedback
|