String#to_id
class String def to_id downcase.gsub(/\W+/, ' ').strip.gsub(' ', '_') end def to_id! replace to_id end end
DZone Snippets > canadaduane > identifier
11381 users tagging and storing useful source code snippets
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
Duane Johnson http://blog.inquirylabs.com/
class String def to_id downcase.gsub(/\W+/, ' ').strip.gsub(' ', '_') end def to_id! replace to_id end end