How to convert an Int to a String of a given length with leading zeros to align?

StringScalaFormattingInt

String Problem Overview


How can I convert an Int to a 7-character long String, so that 123 is turned into "0000123"?

String Solutions


Solution 1 - String

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

Edit post Scala 2.10: as suggested by fommil, from 2.10 on, there is also a formatting string interpolator (does not support localisation):

val expr = 123
f"$expr%07d"
f"${expr}%07d"

Edit Apr 2019:

  • If you want leading spaces, and not zero, just leave out the 0 from the format specifier. In the above case, it'd be f"$expr%7d".Tested in 2.12.8 REPL. No need to do the string replacement as suggested in a comment, or even put an explicit space in front of 7 as suggested in another comment.

  • If the length is variable, s"%${len}d".format("123")

Solution 2 - String

Short answer:

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

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". Note the element type of a String is a Char, hence the single quotes around the 'a'.

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!

Solution 3 - String

The padding is denoted by %02d for 0 to be prefixed to make the length 2:

scala> val i = 9
i: Int = 9




scala> val paddedVal = f"${num}%02d"
paddedVal: String = 09




scala> println(paddedVal)

09

scala> println(paddedVal)
09

Solution 4 - String

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

"0000000" + 123 takeRight 7

Solution 5 - String

def leftPad(s: String, len: Int, elem: Char): String = {
 elem.toString * (len - s.length()) + s
}

Solution 6 - String

In case this Q&A becomes the canonical compendium,

scala> import java.text._
import java.text._

scala> NumberFormat.getIntegerInstance.asInstanceOf[DecimalFormat]
res0: java.text.DecimalFormat = java.text.DecimalFormat@674dc

scala> .applyPattern("0000000")

scala> res0.format(123)
res2: String = 0000123

Solution 7 - String

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)

Solution 8 - String

For String use:

def completeTo10Digits(entity: String): String = {
    val zerosToAdd = (1 to (10 - entity.length)).map(_ => "0").mkString
    zerosToAdd + entity
  }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionIvanView Question on Stackoverflow
Solution 1 - StringhuynhjlView Answer on Stackoverflow
Solution 2 - StringPablo FernandezView Answer on Stackoverflow
Solution 3 - StringmaxmithunView Answer on Stackoverflow
Solution 4 - StringLuigi PlingeView Answer on Stackoverflow
Solution 5 - StringzeromemView Answer on Stackoverflow
Solution 6 - Stringsom-snyttView Answer on Stackoverflow
Solution 7 - String0__View Answer on Stackoverflow
Solution 8 - StringPrzemysław SajnógView Answer on Stackoverflow