Skip to content

Instantly share code, notes, and snippets.

@robertsosinski
Created September 24, 2009 19:39
Show Gist options
  • Save robertsosinski/192975 to your computer and use it in GitHub Desktop.
Save robertsosinski/192975 to your computer and use it in GitHub Desktop.
RegEx scrubber to make permalinks from strings
name.downcase.gsub(/'/, "").gsub(/[^[:alnum:]]/, "_").gsub(/_{2,}/, "_").gsub(/^_|_$/, "")
# scrub out: ^contractions ^non-alpha-num characters ^extra underscores ^other underscores
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment