程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> .NET截取指定長度漢字超出部分以...代替 實例分享

.NET截取指定長度漢字超出部分以...代替 實例分享

編輯:ASP.NET基礎

復制代碼 代碼如下:
///   <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;
    }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved