码迷,mamicode.com
首页 > 其他好文 > 详细

检查汉子字符

时间:2014-11-25 15:57:43      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ar   os   for   new   text   对象   字符串   ca   br   

private void btn_GetCount_Click(object sender, EventArgs e)
{
int P_scalar = 0;//定义值类型变量并赋值为0
Regex P_regex = //创建正则表达式对象,用于判断字符是否为汉字
new Regex("^[\u4E00-\u9FA5]{0,}$");
for (int i = 0; i < txt_str.Text.Length; i++)//遍历字符串中每一个字符
{
P_scalar = //如果检查的字符是汉字则计数器加1
P_regex.IsMatch(txt_str.Text[i].
ToString()) ? ++P_scalar : P_scalar;
}
txt_count.Text = P_scalar.ToString();//显示汉字数量
}

检查汉子字符

标签:ar   os   for   new   text   对象   字符串   ca   br   

原文地址:http://www.cnblogs.com/wuhuisheng/p/4120912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!