Hàm loại bỏ dấu trong chuổi - the string with the diacritics removed
Chúc các bạn thành công "Hàm loại bỏ dấu trong chuổi"
public string RemovDicritics (string newcustomer)
{
var normalized = text.Normalize(NormalizationForm.FormD);
var sb = new StringBuilder();
foreach (var c innormalized.Where(c =>
CharUnicodeInfo.GetUnicodeCategory(c) != UnicodeCategory.NonSpacingMark))
{
sb.Append(c);
}
return sb.ToString();
}
Chúc các bạn thành công "Hàm loại bỏ dấu trong chuổi"
Post A Comment:
0 comments so far,add yours