楼主昨天用到的代码,今天共享,其实获取汉字的方法有很多 ,
今天 就共享这个 。
[C#] 纯文本查看 复制代码 /// <summary>
/// 提取字符串中的汉字
/// </summary>
/// <param name="text">字符串</param>
/// <returns></returns>
public static string ExtractionChineseCharacters(string text)
{
string context = "";
int currentcode = -1;
for (int i = 0; i < text.Length; i++)
{
currentcode = (int)text[i];
if (currentcode > 19968 && currentcode < 40869)
{
context += text[i].ToString();
}
}
return context;
}
|