Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created March 2, 2010 05:26
Show Gist options
  • Save lxneng/319166 to your computer and use it in GitHub Desktop.
Save lxneng/319166 to your computer and use it in GitHub Desktop.
to_safe_uri
class String
def to_safe_uri
self.strip.downcase.gsub('&', 'and').gsub(' ', '-').gsub(/[^\w-]/,'')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment