码迷,mamicode.com
首页 > Windows程序 > 详细

C# 如何取得汉字的字符长度

时间:2014-11-12 21:13:02      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   for   bs   amp   nbsp   c   har   如何   

public  int calStrLen(string Str)

{

  int i=0;

  if(Str==null)

  {

     return i;

  }

  else

  {

    foreach(char c in Str)

    {

      if(c>0x4e00&&c<=0x9fa5)

        {

        i++;

        }

        i++;

    }

  return i;

  }

 

  

}

C# 如何取得汉字的字符长度

标签:ar   sp   for   bs   amp   nbsp   c   har   如何   

原文地址:http://www.cnblogs.com/zhenfeng/p/4093395.html

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