C# 删除字符串中的中文

 /// <summary>
/// 删除字符串中的中文
/// </summary>
public static string Delete中文(string str)
{
string retValue = str;
if (System.Text.RegularExpressions.Regex.IsMatch(str, @"[\u4e00-\u9fa5]"))
{
retValue = string.Empty;
var strsStrings = str.ToCharArray();
for (int index = ; index < strsStrings.Length; index++)
{
if (strsStrings[index] >= 0x4e00 && strsStrings[index] <= 0x9fa5)
{
continue;
}
retValue += strsStrings[index];
}
}
return retValue;
}
上一篇:阿里历年经典Java面试题汇总,想进BAT你还不快收藏!


下一篇:BZOJ 1758 【WC2010】 重建计划