加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

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

发布时间:2020-12-16 23:11:36 所属栏目:大数据 来源:网络整理
导读:VB: ''' summary ''' 将指定字符串按指定长度进行剪切, ''' /summary ''' param name= "oldStr " 需要截断的字符串 /param ''' param name= "maxLength " 字符串的最大长度 /param ''' param name= "endWith " 超过长度的后缀 /param ''' returns 如果超过

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读