Change from int 1 on int 01

I need to change variable as int = 1 on = 01

wrrrrwrrrrrrrrr

misiek wrote:

I need to change variable as int = 1 on = 01

May you elaborate?

Malte

On Feb 1, 2006, at 21:58, Malte M. wrote:

misiek wrote:

I need to change variable as int = 1 on = 01

May you elaborate?

Maybe he wants octal?

On Thu, 2006-02-02 at 06:57 +0900, misiek wrote:

I need to change variable as int = 1 on = 01

Based on the question, this is as likely as not what you’re after:

1.to_s.rjust(2,‘0’)

=> “01”

sprintf(’%.2d’, 1)

=> “01”

That’s strings, though. My math isn’t great but I think int 1 is int
01 (isn’t it?)

1.to_s.rjust(2,‘0’).to_i

=> 1