Skip to content

Instantly share code, notes, and snippets.

@vko-online
Last active February 2, 2016 06:28
Show Gist options
  • Save vko-online/4c7699a78e48963310ae to your computer and use it in GitHub Desktop.
Save vko-online/4c7699a78e48963310ae to your computer and use it in GitHub Desktop.
JavaScript slug regexp
//convert "My funny text" to "my-funny-text"
function convertToSlug(Text) {
return Text.toLowerCase().replace(/ /g,'-').replace(/[^\w-]+/g,'');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment