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

Does Scala have a built in formatter for binary data?

For example to print out: 00000011 for the Int value 3.

Writing one won't be difficult - just curious if it exists.

share|improve this question

5 Answers

up vote 9 down vote accepted
scala> 3.toBinaryString
res0: String = 11

Scala has an implicit conversion from Int to RichInt which has a method toBinaryString. This function does not print the leading zeroes though.

share|improve this answer

I don't know of a direct API method to do it, but here is one way of doing it:

def toBinary(i: Int, digits: Int = 8) =
    String.format("%" + digits + "s", i.toBinaryString).replace(' ', '0')
share|improve this answer
+1 for adding zeros ;-) – JacobusR Feb 25 '12 at 8:30
@JacobusR Thanks. Actually I believe that's what you asked about, since you were pretty clear in your question, asking for "a built in formatter", not converter! – Hosam Aly Feb 25 '12 at 12:35

8 digits for number 3 with leading zeros:

printf ("%08d", 3.toBinaryString.toInt)
00000011

Since Hosam Aly suggests to create a String as well, here is a method to do so:

def asNdigitBinary (source: Int, digits: Int): String = {
  val l: java.lang.Long = source.toBinaryString.toLong
  String.format ("%0" + digits + "d", l) }

In the general case, using a Long is more appropriate, since binary values get long very fast:

scala> asNdigitBinary (1024*512-1, 32)
res23: String = 00000000000001111111111111111111

So keep that in mind - a selfmade, recursive approach which generates digit by digit and fills them up in the end would be easily made to handle arbitrary values of BigInt.

def toBinDigits (bi: BigInt): String = { 
  if (bi == 0) "0" else toBinDigits (bi /2) + (bi % 2)}

def fillBinary (bi: BigInt, len: Int) = { 
  val s = toBinDigits (bi)
  if (s.length >= len) s 
  else (List.fill (len-s.length) ("0")).mkString ("") + s
}

It would be nice, if

def asNdigitBinary (source: Int, digits: Int): String = {
  val l = BigInt (source.toBinaryString.toLong) 
  String.format ("%0" + digits + "d", l)}

would work, but "%0Nd" does not match for BigInt digits. Maybe a Bugreport/Feature request should be made? But to Scala or Java?

share|improve this answer
This is a good answer, except that it prints the result instead of storing it in a usable variable. You could try this instead: String.format("%08d", 3.toBinaryString.toInt.asInstanceOf[Object]) – Hosam Aly Feb 27 '12 at 13:36
@HosamAly: For example to print out: 00000011 for the Int value 3. – user unknown Feb 28 '12 at 2:01
Good catch. :) Nevertheless, it would be valuable to add the generic version to your answer. I would have added it to mine, but I believe it's your idea. – Hosam Aly Feb 28 '12 at 14:26
I did so, but expanded it, to fit for larger values. – user unknown Feb 28 '12 at 16:13

Here is one more way (old Java):

val x = 5
val str = Integer.toString(x,2)

Just like Lauri answer, it doesn't print leading zeros.

share|improve this answer
I keep forgetting there is nothing evil about using Java in Scala – JacobusR Feb 25 '12 at 8:31

You can do something like this:

scala> val x = 3
x: Int = 3

scala> Integer.toString(x, 2)
res4: java.lang.String = 11

As with other suggestions, this doesn't have leading zeros...

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.