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

不区分中英文截断字符串

时间:2015-05-27 17:26:11      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

public static string GetString(this HtmlHelper htmlHelper, string s, int l, string endStr)
        {
            string temp = s.Substring(0, (s.Length < l + 1) ? s.Length : l + 1);
            byte[] encodedBytes = Encoding.ASCII.GetBytes(temp);


            string outputStr = string.Empty;
            int count = 0;


            for (int i = 0; i < temp.Length; i++)
            {
                if (encodedBytes[i] == 63)
                {
                    count += 2;
                }
                else
                {
                    count += 1;
                }


                if (count <= l - endStr.Length)
                {
                    outputStr += temp.Substring(i, 1);
                }
                else if (count > l)
                {
                    break;
                }
            }


            if (count <= l)
            {
                outputStr = temp;
                endStr = string.Empty;
            }


            outputStr += endStr;


            return outputStr;
        }

不区分中英文截断字符串

标签:

原文地址:http://blog.csdn.net/duwujunjun/article/details/46048103

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