博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
截取字符串显示
阅读量:6189 次
发布时间:2019-06-21

本文共 751 字,大约阅读时间需要 2 分钟。

///   <summary>

///   将指定字符串按指定长度进行剪切,
///   </summary>
///   <param   name= "oldStr "> 需要截断的字符串 </param>
///   <param   name= "maxLength "> 字符串的最大长度 </param>
///   <param   name= "endWith "> 超过长度的后缀 </param>
///   <returns> 如果超过长度,返回截断后的新字符串加上后缀,否则,返回原字符串 </returns>
public static string StringTruncat(string oldStr, int maxLength, string endWith)
{
     if (string.IsNullOrEmpty(oldStr))
         //   throw   new   NullReferenceException( "原字符串不能为空 ");
         return oldStr + endWith;
     if (maxLength < 1)
         throw new Exception("返回的字符串长度必须大于[0] ");
     if (oldStr.Length > maxLength)
     {
         string strTmp = oldStr.Substring(0, maxLength);
         if (string.IsNullOrEmpty(endWith))
             return strTmp;
         else
             return strTmp + endWith;
     }
     return oldStr;
}

转载于:https://www.cnblogs.com/houweidong/archive/2013/03/26/2982840.html

你可能感兴趣的文章
字符串处理(POJ1782)
查看>>
递归,整数划分
查看>>
前端工程师拿到全新的 Mac 需要做哪些准备
查看>>
自定义标签
查看>>
完成个人中心—导航标签2
查看>>
2016高管必看的五大互联网营销方法
查看>>
java新知识系列 六
查看>>
结对开发
查看>>
预处理开始
查看>>
ios-绘制-小知识点(裁减)
查看>>
关于maven各种报错
查看>>
PyCharm下载及使用
查看>>
springmvc并发调用controller方法时对局部变量的影响
查看>>
LeetCode OJ:Binary Search Tree Iterator(二叉搜索树迭代器)
查看>>
LeetCode OJ:Maximal Rectangle(最大矩形)
查看>>
Nancy之静态文件处理
查看>>
(转)style,currentStyle,getComputedStyle的区别和用法
查看>>
项目经理的这几个常用套路,你一定要知道!
查看>>
论网络工程中,系统开发设计可行性研究及市面产品对比!
查看>>
关于opencv的cv2.WINDOW_一类
查看>>