将指定字符串按指定长度进行剪切

VB:

 '''  <summary>       
    ''' 将指定字符串按指定长度进行剪切,       
    '''  </summary>       
    ''' <param   name= "oldStr "> 需要截断的字符串 </param>       
    ''' <param   name= "maxLength "> 字符串的最大长度 </param>       
    ''' <param   name= "endWith "> 超过长度的后缀 </param>       
    ''' <returns> 如果超过长度,返回截断后的新字符串加上后缀,否则,返回原字符串 </returns> 
    '''
    Public Function stringTruncat(ByVal oldStr As String, ByVal maxLength As Integer, ByVal endWith As String) As String
        If String.IsNullOrEmpty(oldStr) Then
            Return oldStr + endWith

            If maxLength < 1 Then
                MsgBox("返回的字符串长度必须大于0")
                Exit Function
                If (oldStr.Length > maxLength) Then
                    Dim strTem As String = oldStr.Substring(0, maxLength)
                    If String.IsNullOrEmpty(endWith) Then
                        Return strTem
                    Else
                        Return strTem + endWith
                    End If

                End If
            End If
        End If

        Return oldStr
       
    End Function

 

 

 

c#:

///   <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;  
   }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值