zoukankan      html  css  js  c++  java
  • 字符串剪切方法

             /// <summary>
            /// 将指定字符串进行剪切
            /// </summary>
            /// <param name="oldStr">字符串</param>
            /// <param name="marLenth">指定长度</param>
            /// <param name="endWith">尾部</param>
            /// <returns></returns>
            public static  string StringTruncate(string oldStr,int marLenth,string endWith)
            {
                if (string.IsNullOrEmpty(oldStr))
                {
                    return endWith;
                }
                if (marLenth < 1)
                {
                    throw new Exception("返回的字符串长度必须大于【0】");
                }
                if (oldStr.Length>marLenth)
                {
                    string strTmp = oldStr.Substring(0, marLenth);
                    if (string.IsNullOrEmpty(endWith))
                    {
                        return strTmp;
                    }
                    else
                    {
                        return strTmp + endWith;
                    }
                }
                return oldStr;
            }

  • 相关阅读:
    2013 Multi-University Training Contest 6 部分解题报告
    2013 Multi-University Training Contest 5 部分解题报告
    Codeforces Round #195 (Div. 2) 解题报告
    (转) tarjan算法
    重装SQLServer2008
    关于此博客园及其美化
    矩阵乘法
    CSP-S2019部分题解
    二维偏序
    [BOI2003]团伙
  • 原文地址:https://www.cnblogs.com/liuyunpiaohe/p/1707264.html
Copyright © 2011-2022 走看看