Skip to content

Instantly share code, notes, and snippets.

@icodesido
Created August 1, 2019 13:41
Show Gist options
  • Save icodesido/c437cadca8377993383bf2373e985919 to your computer and use it in GitHub Desktop.
Save icodesido/c437cadca8377993383bf2373e985919 to your computer and use it in GitHub Desktop.
Lookaheads in RegExp
const toSpinal = str => str.split(/\s|_|(?=[A-Z])/).join('-').toLowerCase()
console.log(toSpinal("I like potatoes")) //i-like-potatoes
console.log(toSpinal("ILikeCarrots")) //i-like-carrots
console.log(toSpinal("ThisIsA_really We1rdString")) //this-is-a-really-we1rd-string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment