Skip to content

Instantly share code, notes, and snippets.

@huacnlee
Created August 3, 2010 01:03
Show Gist options
  • Save huacnlee/505628 to your computer and use it in GitHub Desktop.
Save huacnlee/505628 to your computer and use it in GitHub Desktop.
# clear unsafe char with url slug
def safe_slug(slug)
slug.gsub(/[^a-zA-Z_0-9]/,'_')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment