Created
December 19, 2015 07:48
-
-
Save thanhhh/b81d5e48a9b14f1c57e9 to your computer and use it in GitHub Desktop.
Clear Vietnamese Sign C#
This file contains hidden or 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
public class StringUtil | |
{ | |
private static readonly string[] VietnameseSigns = new string[] | |
{ | |
"aAeEoOuUiIdDyY", | |
"áàạảãâấầậẩẫăắằặẳẵ", | |
"ÁÀẠẢÃÂẤẦẬẨẪĂẮẰẶẲẴ", | |
"éèẹẻẽêếềệểễ", | |
"ÉÈẸẺẼÊẾỀỆỂỄ", | |
"óòọỏõôốồộổỗơớờợởỡ", | |
"ÓÒỌỎÕÔỐỒỘỔỖƠỚỜỢỞỠ", | |
"úùụủũưứừựửữ", | |
"ÚÙỤỦŨƯỨỪỰỬỮ", | |
"íìịỉĩ", | |
"ÍÌỊỈĨ", | |
"đ", | |
"Đ", | |
"ýỳỵỷỹ", | |
"ÝỲỴỶỸ" | |
}; | |
public static string RemoveSign4VietnameseString(string str) | |
{ | |
//Tiến hành thay thế , lọc bỏ dấu cho chuỗi | |
for (int i = 1; i < VietnameseSigns.Length; i++) | |
{ | |
for (int j = 0; j < VietnameseSigns[i].Length; j++) | |
str = str.Replace(VietnameseSigns[i][j], VietnameseSigns[0][i - 1]); | |
} | |
return str; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Xóa dấu tiếng việt dùng regex
2024-04-22 Trung Nam