亚洲欧美日韩天堂在线观看,日本少妇XXX做受,成人电影在线免费观看,大香蕉在线网站

專業(yè)的廣州網(wǎng)站建設(shè)公司、廣州網(wǎng)站設(shè)計(jì)制作公司為您服務(wù),電話:020-85548809,29883069
新聞中心
專業(yè)專注專心,行業(yè)行情行規(guī)
分享交流,永無(wú)止境,我們?cè)概c您共同進(jìn)步

ASP去除HTML代碼

發(fā)布日期:[2010/10/22]   編輯:奇億廣州網(wǎng)站建設(shè)

分享幾種ASP去除HMTL代碼的方法:

ASP去除HMTL代碼方法一:
<%'去除HTML代碼
function noHTML(str)
dim re
Set re=new RegExp
re.IgnoreCase =True '設(shè)置是否區(qū)分字符大小寫。
re.Global=True
re.Pattern="(<img)(.[^<>]*)(src=)('|"&CHR(34)&"| )?(.[^'|\s|"&CHR(34)&"]*)(\.)(jpg|gif|png|bmp|jpeg)('|"&CHR(34)&"|\s|>)(.[^>]*)(>)" '設(shè)置模式
str=re.replace(str,"")
re.Pattern="(\<font.[^\<]*\>)"
str=re.replace(str," ")
nohtml=str
set re=nothing
end function%>
調(diào)用:noHTML(內(nèi)容)

ASP去除HMTL代碼方法二:
<%Function noHtml(strHtml) '做了一個(gè)函數(shù)名叫noHtml
Dim objRegExp, strOutput
Set objRegExp = New Regexp ' 建立正則表達(dá)式
objRegExp.IgnoreCase = True ' 設(shè)置是否區(qū)分大小寫
objRegExp.Global = True '是匹配所有字符串還是只是第一個(gè)
objRegExp.Pattern = "(<[a-zA-Z].*?>)|(<[\/][a-zA-Z].*?>)" ' 設(shè)置模式引號(hào)中的是正則表達(dá)式,用來(lái)找出html標(biāo)簽
strOutput = objRegExp.Replace(strHtml, "") '將html標(biāo)簽去掉
strOutput = Replace(strOutput, "<", "<") '防止非html標(biāo)簽不顯示
strOutput = Replace(strOutput, ">", ">")
noHtml = strOutput
Set objRegExp = Nothing
End Function%>
調(diào)用:noHTML(內(nèi)容)

ASP去除HMTL代碼方法三:
<%Function noHtml(ContentStr)
 Dim ClsTempLoseStr,regEx
 ClsTempLoseStr = Cstr(ContentStr)
 Set regEx = New RegExp
 regEx.Pattern = "<\/*[^<>]*>"
 regEx.IgnoreCase = True
 regEx.Global = True
 ClsTempLoseStr = regEx.Replace(ClsTempLoseStr,"")
 noHtml = ClsTempLoseStr
End function%>
調(diào)用:noHTML(內(nèi)容)

如果是需要去除或刪除或替換從某某字符內(nèi)容開始到某某結(jié)束內(nèi)容的全部,以下是ASP去除或替換開始到結(jié)束內(nèi)容的代碼:
<%Function ReplaceExp(srcstr, patrn, replStr)
Set regEx = New RegExp
regEx.Pattern = patrn
regEx.IgnoreCase = True
regEx.Global = True
regEx.Execute(srcstr)
ReplaceExp = regEx.Replace(srcstr, replStr)
Set regEx = Nothing
End Function%>
調(diào)用:ReplaceExp(原內(nèi)容,"開始符號(hào).*?結(jié)束符號(hào)","替換內(nèi)容")

廣州建網(wǎng)站、廣州做網(wǎng)站
或者將本文《ASP去除HTML代碼》收藏和分享到:
復(fù)制本文《ASP去除HTML代碼》地址給好友:
齐河县| 屯昌县| 加查县| 黄石市| 汝阳县| 保定市| 永州市| 保靖县| 东兰县| 上犹县| 麻阳| 个旧市| 炉霍县| 神木县| 宝山区| 兰西县| 乳山市| 云林县| 探索| 汤原县| 兴和县| 高邑县| 黄骅市| 汕尾市| 三亚市| 白玉县| 江达县| 南江县| 筠连县| 榆社县| 武陟县| 台东市| 宣恩县| 临猗县| 安吉县| 宽甸| 日喀则市| 舟山市| 汝阳县| 民权县| 怀来县|