Guest User

Untitled

a guest
Apr 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class String
  2. def sanitize
  3. s = self.to_s
  4. s.gsub!(/\W+/, ' ') # all non-word chars to spaces
  5. s.strip! # ohh la la
  6. s.downcase! #
  7. s.gsub!(/\ +/, '-') # spaces to dashes, preferred separator char everywhere
  8. s
  9. end
  10. end
Add Comment
Please, Sign In to add comment