vote up 14 vote down star
4

I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]

value = ""; 8.times{value  << (65 + rand(25)).chr}

but it looks junky, and since it isn't a single statement it can't be passed as an argument. To get a mixed case string [a-zA-Z] I further hack into it with

value = ""; 8.times{value << ((rand(2)==1?65:97) + rand(25)).chr}

Just looks like trash. Anyone have a better method?

flag
You should try refactormycode.com for this question. It may be better suited. – webmat Sep 18 '08 at 2:20

13 Answers

vote up 18 vote down check
(0...8).map{65.+(rand(25)).chr}.join

I spend too much time golfing.

(0...50).map{ ('a'..'z').to_a[rand(26)] }.join

For lots of good WTFBBQ factor.

And one more that's even more confusing, but more flexible and wastes less cycles:

o =  [('a'..'z'),('A'..'Z')].map{|i| i.to_a}.flatten;  
string  =  (0..50).map{ o[rand(o.length)]  }.join;
link|flag
good point. but, i had a bug, you need "..." not ".." – Kevin Conner Sep 17 '08 at 22:30
vote up 5 vote down

Can't remember where I found this, but seemed the best to me and least process intense:

    def random_string(length=10)
        chars = 'abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'
        password = ''
        length.times { password << chars[rand(chars.size)] }
        password
    end
link|flag
vote up 3 vote down
require 'sha1'
srand
seed = "--#{rand(10000)}--#{Time.now}--"
Digest::SHA1.hexdigest(seed)[0,8]
link|flag
Interesting, but quite a bit more computationally expensive – Jeff Sep 17 '08 at 22:49
Also no capacity for limited scope of characters. – Kent Fredric Sep 17 '08 at 22:58
Keep in mind that a hex digest returns only 0-9 and a-f characters. – webmat Sep 18 '08 at 2:19
vote up 2 vote down

This solution generates a string of easily readable characters for activation codes; I didn't want people confusing 8 with B, 1 with I, 0 with O, etc.

# Generates a random string from a set of easily readable characters
def generate_activation_code(size = 6)
  charset = %w{ 2 3 4 6 7 9 A C D E F G H J K L M N P Q R T V W X Y Z}
  (0...size).map{ charset.to_a[rand(charset.size)] }.join
end
link|flag
vote up 1 vote down

To make your first into one statement:

(0...8).collect { |n| value  << (65 + rand(25)).chr }.join()
link|flag
vote up 1 vote down

With this method you can pass in an abitrary length. It's set as a default as 6.

def generate_random_string(length=6)
  string = ""
  chars = ("A".."Z").to_a
  length.times do
    string << chars[rand(chars.length-1)]
  end
  string
end
link|flag
vote up 0 vote down

I don't know ruby, so I can't give you the exact syntax, but I would set a constant string with the list of acceptable characters, then use the substring operator to pick a random character out of it.

The advantage here is that if the string is supposed to be user-enterable, then you can exclude easily confused characters like l and 1 and i, 0 and O, 5 and S, etc.

link|flag
vote up 0 vote down

That's basically the same thing I did for random strings in PHP. The only possible improvement I'd make is to drop that into a function, possibly with an argument for the length of the string if needed, so you can pass the function's return value as an argument.

link|flag
vote up 0 vote down

This is almost as ugly but perhaps as step in right direction?

 (1..8).map{|i| ('a'..'z').to_a[rand(26)]}.join
link|flag
lol. i swear i did't see that before i extended mine. weird. – Kent Fredric Sep 17 '08 at 22:35
:) I actually love the fastest gun in a perverse way – Purfideas Sep 17 '08 at 22:37
vote up 0 vote down

We've been using this on our code:

class String

  def self.random(length=10)
    ('a'..'z').sort_by {rand}[0,length].join
  end

end

The maximum length supported is 25 (we're only using it with the default anyway, so hasn't been a problem).

Someone mentioned that 'a'..'z' is suboptimal if you want to completely avoid generating offensive words. One of the ideas we had was removing vowels, but you still end up with WTFBBQ etc.

link|flag
Your approach can't return repeating characters (e.g, uuunMoBldj)... Is this what's wanted? – webmat Sep 18 '08 at 2:32
Yes, I suppose that technically isn't really a random string anymore, good find webmat. – Jeff Sep 21 '08 at 1:50
vote up 0 vote down

I like Radar's answer best, so far, I think. I'd tweak a bit like this:

CHARS = ('a'..'z').to_a + ('A'..'Z').to_a
def rand_string(length=8)
  s=''
  length.times{ s << CHARS[rand(CHARS.length)] }
  s
end
link|flag
vote up 0 vote down

In ruby 1.9 one can use Array's choice method which returns random element from array

link|flag
Thanks for the heads up - however, svn.ruby-lang.org/repos/ruby/… seems to indicate that Array#sample is to be used in 1.9.1, not Array#choose / choice – Andrew Grimm Aug 31 at 5:37
vote up 0 vote down

Why not use SecureRandom, provided by ActiveSupport?

require 'active_support/secure_random'
random_string = ActiveSupport::SecureRandom.hex(16)

# outputs: 5b5cd0da3121fc53b4bc84d0c8af2e81

SecureRandom also has methods for:

  • base64
  • hex
  • random_bytes
  • random_number

see: http://api.rubyonrails.org/classes/ActiveSupport/SecureRandom.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.