Skip to content

Instantly share code, notes, and snippets.

@abdullahceylan
Created November 22, 2019 20:44
Show Gist options
  • Save abdullahceylan/2aeaafd0e0d4998dd989d7ef783bc713 to your computer and use it in GitHub Desktop.
Save abdullahceylan/2aeaafd0e0d4998dd989d7ef783bc713 to your computer and use it in GitHub Desktop.
Javascript Unicode Text Slugify
function slugify(str) {
str = str.replace(/^\s+|\s+$/g, "") // trim
str = str.toLowerCase()
// remove accents, swap ñ for n, etc
var from = "ıİşŞçÇüÜğĞöÖàáäâèéëêìíïîòóöôùúüûñç·/_,:;"
var to = "iissccuuggooaaaaeeeeiiiioooouuuunc------"
for (var i = 0, l = from.length; i < l; i++)
str = str.replace(new RegExp(from.charAt(i), "g"), to.charAt(i))
str = str
.replace(/[^a-z0-9 -]/g, "") // remove invalid chars
.replace(/\s+/g, "-") // collapse whitespace and replace by -
.replace(/-+/g, "-") // collapse dashes
return str
}
//console.log(slugify('Türkçe karakter desteklediğim için mutluyum'))
//output: turkce-karakter-destekledigim-icin-mutluyum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment