Created
March 28, 2009 18:17
-
-
Save femoco/87164 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_random_string(length=5) | |
source=("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a + ["_","-","."] | |
key="" | |
length.times{ key += source[rand(source.size)].to_s } | |
return key | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
´Hey Femoco,
Thank you! This was really useful. Though, when I tried to use it to generate a string with repetitive letters it won't work. It seems it does not generate a string with repetitive letters, do you imagine why?