tnblog
首页
视频
资源
登录

字符串扩展方法

3759人阅读 2020/3/31 14:54 总访问:436636 评论:0 收藏:0 手机
分类: ASP.NET

    1. 获取字符串的实际长度(按单字节)
    2. public static int GetRealLength(this string source)
    3. {
    4.    return System.Text.Encoding.Default.GetByteCount(source);
    5. }
    6. 取得固定长度的字符串(按单字节截取)
    7. public static string SubString(this string source, int resultLength)
    8. {
    9.   //判断字串是否为空
    10.   if (source == null)
    11.    {
    12.      return "";
    13.   }
    14.    //判断字符串长度是否大于截断长度
    15.    if(System.Text.Encoding.Default.GetByteCount(source) > resultLength)
    16.    {
    17.      //初始化
    18.      int i = 0, j = 0;
    19.       //为汉字或全脚符号长度加2否则加1
    20.      foreach (char newChar in source)
    21.      {
    22.        if ((int)newChar > 127)
    23.         {
    24.           i += 2;
    25.        }
    26.        else
    27.        {
    28.          i++;
    29.        }
    30.        if (i > resultLength)
    31.        {
    32.          source = source.Substring(0, j);
    33.          break;
    34.        }
    35.          j++;
    36.      }
    37.    }
    38.       return source;
    39. }
    40. 取得固定长度字符的字符串,后面加上…(按单字节截取)
    41. public static string SubStr(this string source, int resultLength)
    42.         {
    43.             //判断字串是否为空
    44.             if (string.IsNullOrEmpty(source))
    45.             {
    46.                 return "";
    47.             }
    48.             if (source.GetRealLength() <= resultLength)
    49.             {
    50.                 return source;
    51.             }
    52.             else
    53.             {
    54.                 return source.SubString(resultLength) + "...";
    55.             }
    56.         }
    57. 取得固定长度字符的字符串(按单字节截取)(无添加...)
    58. public static string SubStrUnAdd(this string source, int resultLength)
    59.         {
    60.             //判断字串是否为空
    61.             if (string.IsNullOrEmpty(source))
    62.             {
    63.                 return "";
    64.             }
    65.             if (source.GetRealLength() <= resultLength)
    66.             {
    67.                 return source;
    68.             }
    69.             else
    70.             {
    71.                 return source.SubString(resultLength);
    72.             }
    73.         }
评价
当你知道迷惑时,并不可怜,当你不知道迷惑时,才是最可怜的。
排名
11
文章
201
粉丝
10
评论
13
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术
运伟大之思者,必行伟大之迷途。