Skip to content

Instantly share code, notes, and snippets.

@delineas
Created October 3, 2021 18:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/094b8e953fe32136c8569f151ee88427 to your computer and use it in GitHub Desktop.
Save delineas/094b8e953fe32136c8569f151ee88427 to your computer and use it in GitHub Desktop.
Replace text for anchor link
const myString = "Comía Feliz el Ñandú cardo y kiwi";
myString.toLowerCase()
.normalize('NFD')
.replace(/([aeio])\u0301|(u)[\u0301\u0308]/gi,"$1$2")
.normalize()
.replace(/ñ/gi,"n")
.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi, '')
.replace(/ +/g, '-');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment