Slugify a string
11 March 2022 (Updated 8 September 2022)
On this page
TLDR
You want a function that takes a given string and converts into a slug:
Here’s how in Ruby:
Here’s how in JavaScript / TypeScript:
Explanation
The slugify
function takes these steps:
- Downcase the string.
- Strip leading and trailing spaces.
- Replaces spaces with dashes.
- Remove any char that isn’t a letter, number or dash.
Tagged:
Snippets
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment