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

获得字符串字节长度

时间:2014-11-24 16:43:25      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   for   div   log   bs   as   

 public 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;
    }

 

获得字符串字节长度

标签:style   blog   color   sp   for   div   log   bs   as   

原文地址:http://www.cnblogs.com/qxw0816/p/4118795.html

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