最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp 字符截取程序代码
时间:2022-07-02 23:04:54 编辑:袖梨 来源:一聚教程网
Public Function CutStr(byVal val,byVal length,byVal endStr)
Dim l,t,c,i
If val = "" Or IsNull(val) Then
CutStr = ""
Exit Function
End If
If length = "" Or Int(length) <= 0 Or IsNumeric(length) = False Then
CutStr = val
Exit Function
End If
val = LoseHTML(val)
l = Len(val)
length = Int(length)
t = 0
For i = 1 To l
c = Ascw(Mid(val,i,1))
If c < 0 Or c > 255 Then t = t + 2 Else t = t + 1
IF t >= length Then
CutStr = Left(val,i) & endStr
Exit For
Else
CutStr = val
End If
Next
End Function
Public Function LoseHtml(ContentStr)
If ContentStr = "" Or IsNull(ContentStr) Or IsEmpty(ContentStr) Then
LoseHtml = ""
Else
Dim tempLoseStr,regEx
tempLoseStr = Cstr(ContentStr)
Set regEx = New RegExp
regEx.Pattern = "*[^<>]*>"
regEx.IgnoreCase = True
regEx.Global = True
tempLoseStr = regEx.Replace(tempLoseStr,"")
LoseHtml = tempLoseStr
End if
End Function
相关文章
- 光遇11.26免费魔法有什么 11-26
- 猜一猜: 以下哪种职业属于“新就业形态” 蚂蚁新村11月24日答案 11-26
- 澳大利亚特有的海龟是哪种 神奇海洋11月24日答案最新 11-26
- 哪种海龟是澳大利亚特有的海龟 神奇海洋11月24日答案 11-26
- 哪种职业属于“新就业形态” 蚂蚁新村11月24日答案最新 11-26
- 支付宝蚂蚁森林神奇海洋11月24日答案 11-26