Skip to content

Instantly share code, notes, and snippets.

@hantv15
Forked from bluzky/slug.js
Created December 29, 2022 02:43
Show Gist options
  • Save hantv15/279a2e79b9f067e6912bc7d2a889d3d4 to your computer and use it in GitHub Desktop.
Save hantv15/279a2e79b9f067e6912bc7d2a889d3d4 to your computer and use it in GitHub Desktop.
Remove vietnamese accent javascript / Bỏ dấu tiếng Việt
function stringToSlug(str) {
// remove accents
var from = "àáãảạăằắẳẵặâầấẩẫậèéẻẽẹêềếểễệđùúủũụưừứửữựòóỏõọôồốổỗộơờớởỡợìíỉĩịäëïîöüûñçýỳỹỵỷ",
to = "aaaaaaaaaaaaaaaaaeeeeeeeeeeeduuuuuuuuuuuoooooooooooooooooiiiiiaeiiouuncyyyyy";
for (var i=0, l=from.length ; i < l ; i++) {
str = str.replace(RegExp(from[i], "gi"), to[i]);
}
str = str.toLowerCase()
.trim()
.replace(/[^a-z0-9\-]/g, '-')
.replace(/-+/g, '-');
return str;
}
@hantv15
Copy link
Author

hantv15 commented Dec 29, 2022

Clone slug.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment