欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

.NET截取指定長(zhǎng)度漢字超出部分以"..."代替 實(shí)例分享

 更新時(shí)間:2013年06月12日 12:51:41   作者:  
.NET截取指定長(zhǎng)度漢字超出部分以"..."代替 實(shí)例分享,需要的朋友可以參考一下

復(fù)制代碼 代碼如下:

///   <summary>
    ///   將指定字符串按指定長(zhǎng)度進(jìn)行剪切,
    ///   </summary>
    ///   <param   name= "oldStr "> 需要截?cái)嗟淖址?</param>
    ///   <param   name= "maxLength "> 字符串的最大長(zhǎng)度 </param>
    ///   <param   name= "endWith "> 超過長(zhǎng)度的后綴 </param>
    ///   <returns> 如果超過長(zhǎng)度,返回截?cái)嗪蟮男伦址由虾缶Y,否則,返回原字符串 </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("返回的字符串長(zhǎng)度必須大于[0] ");
        if (oldStr.Length > maxLength)
        {
            string strTmp = oldStr.Substring(0, maxLength);
            if (string.IsNullOrEmpty(endWith))
                return strTmp;
            else
                return strTmp + endWith;
        }
        return oldStr;
    }

相關(guān)文章

最新評(píng)論