Created
August 5, 2019 08:17
-
-
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 ....
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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