超简单C#获取带汉字的字符串真实长度(单个英文长度为1,单个中文长度为2)

时间:2021-09-15 00:22:58

正常情况下,我们是直接去string的length的,但是汉字是有两个字节的,所以直接用length是错的。如下图:

超简单C#获取带汉字的字符串真实长度(单个英文长度为1,单个中文长度为2)

所以应该用以下代码来获取长度:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
private void button1_click(object sender, eventargs e)
    {
      string s = textbox1.text;
      int i = getlength(s);
      messagebox.show(i.tostring());
    }
 
    public static int getlength(string str)
    {
      if (str.length == 0)
        return 0;
      asciiencoding ascii = new asciiencoding();
      int templen = 0;
      byte[] s = ascii.getbytes(str);
      for (int i = 0; i < s.length; i++)
      {
        if ((int)s[i] == 63)
        {
          templen += 2;
        }
        else
        {
          templen += 1;
        }
      }
      return templen;
    }

运行结果如下图:

超简单C#获取带汉字的字符串真实长度(单个英文长度为1,单个中文长度为2)

也可以用这个获取长度:

?
1
int i = system.text.encoding.default.getbytes(s).length;

通过系统提供函数我们就可以获取中文的真实长度,是不是很简单

原文链接:http://www.cnblogs.com/haibing0107/p/5825600.html