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

Additionally, how can I format it as a string padded with zeros?

share|improve this question

4 Answers

To generate the number call rand with the result of the expression "10 to the power of 10"

rand(10 ** 10)

To pad the number with zeros you can use the string format operator

'%010d' % rand(10 ** 10)

or the rjust method of string

rand(10 ** 10).to_s.rjust(10,'0')
share|improve this answer

I JUST WANT TO Modify the FIRST ANSWER rand (10**10) may generate 9 digit random no if 0 is in first place.for ensuring 10 exact digit just modify

code = rand(10**10)
while code.to_s.length != 10
code =rand(11**11)

end

share|improve this answer

Here is an expression that will use one fewer method call than quackingduck's example.

'%011d' % rand(1e10)

One caveat, 1e10 is a Float, and Kernel#rand ends up calling to_i on it, so for some higher values you might have some inconsistencies. To be more precise with a literal, you could also do:

'%011d' % rand(10_000_000_000) # Note that underscores are ignored in integer literals
share|improve this answer

This will work even on ruby 1.8.7:

rand(9999999999).to_s.center(10, rand(9).to_s).to_i

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.