DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Generate A Random Alphanumeric String In Ruby
Generate a random alphanumeric string in Ruby
(0..length).map{ rand(36).to_s(36) }.join





