截字符串 去除HTML标记要怎么操作

来源:爱站网时间:2021-08-13编辑:网友分享
截字符串 去除HTML标记要怎么操作,上次有个朋友来找爱站技术小编询问这个问题,这可把我给问倒了,答应朋友给他找出一个办法来,于是上网查阅了很多资料。终于找到了合适的方法,于是记录下来上传到这里,给大家提供帮助。

'**************************************************
'函数名:gotTopic
'作 用:截字符串,汉字一个算两个字符,英文算一个字符
'参 数:str ----原字符串
' strlen ----截取长度
'返回值:截取后的字符串
'**************************************************
function gotTopic(str,strlen)
if str="" then
gotTopic=""
exit function
end if
dim l,t,c, i
str=replace(replace(replace(replace(str," "," "),""",chr(34)),">",">")," str=replace(str,"?","")
l=len(str)
t=0
for i=1 to l
c=Abs(Asc(Mid(str,i,1)))
if c>255 then
t=t+2
else
t=t+1
end if
if t>=strlen then
gotTopic=left(str,i) & "…"
exit for
else
gotTopic=str
end if
next
gotTopic=replace(replace(replace(replace(gotTopic," "," "),chr(34),"""),">",">")," end function
'=========================================================
'函数:RemoveHTML(strHTML)
'功能:去除HTML标记
'参数:strHTML --要去除HTML标记的字符串
'=========================================================
Function RemoveHTML(strHTML)
Dim objRegExp, Match, Matches
Set objRegExp = New Regexp
objRegExp.IgnoreCase = True
objRegExp.Global = True
'取闭合的
objRegExp.Pattern = "<.>"
'进行匹配
Set Matches = objRegExp.Execute(strHTML)
' 遍历匹配集合,并替换掉匹配的项目
For Each Match in Matches
strHtml=Replace(strHTML,Match.Value,"")
Next
RemoveHTML=strHTML
Set objRegExp = Nothing
set Matches=nothing
End Function
%>

以上内容就是爱站技术频道小编为大家分享的截字符串 去除HTML标记要怎么操作,看完以上分享之后,大家应该都知道遇到相同问题要怎么操作了吧。

上一篇:基于ES2015正则表达式的新特性

下一篇:JScript中正则表达函数的说明与应用

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载