Skip to content

Instantly share code, notes, and snippets.

@tyluudinh
Created August 5, 2019 08:17
Show Gist options
  • Save tyluudinh/b99d6be0b5c10ccbb2b2d6e5874a2213 to your computer and use it in GitHub Desktop.
Save tyluudinh/b99d6be0b5c10ccbb2b2d6e5874a2213 to your computer and use it in GitHub Desktop.
Chuyển các kí tự đặc biệt về dạng biến thể của nó: đ -> d, ê -> e ....
return str
.normalize('NFD')
.replace(/[\u0300-\u036f]/g, '')
.replace(/đ/g, 'd')
.replace(/Đ/g, 'D');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment