国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

asp 正則實現(xiàn)清除html文本格式的函數(shù)代碼

2024-05-04 11:08:36
字體:
供稿:網(wǎng)友
正則匹配(正則表達(dá)式)模式進行數(shù)據(jù)匹配替換
 
 
 
復(fù)制代碼代碼如下:

<% 
'/* 函數(shù)名稱:Zxj_ReplaceHtml ClearHtml 
'/* 函數(shù)語言:VBScript Language 
'/* 作  用:清除文件HTML格式函數(shù) 
'/* 傳遞參數(shù):Content (注:需要進行清除的內(nèi)容) 
'/* 函數(shù)作者:張曉軍(古城童話) QQ:382511147 
'/* 函數(shù)說明:正則匹配(正則表達(dá)式)模式進行數(shù)據(jù)匹配替換 

Function ClearHtml(Content) 
Content=Zxj_ReplaceHtml("&#[^>]*;", "", Content) 
Content=Zxj_ReplaceHtml("</?marquee[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?object[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?param[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?embed[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?table[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml(" ","",Content) 
Content=Zxj_ReplaceHtml("</?tr[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?th[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?p[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?a[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?img[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?tbody[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?li[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?span[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?div[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?th[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?td[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?script[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("(javascript|jscript|vbscript|vbs):", "", Content) 
Content=Zxj_ReplaceHtml("on(mouse|exit|error|click|key)", "", Content) 
Content=Zxj_ReplaceHtml("<//?xml[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("<//?[a-z]+:[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?font[^>]*>", "", Content) 
Content=Zxj_ReplaceHtml("</?b[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?u[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?i[^>]*>","",Content) 
Content=Zxj_ReplaceHtml("</?strong[^>]*>","",Content) 
ClearHtml=Content 
End Function 

Function Zxj_ReplaceHtml(patrn, strng,content) 
IF IsNull(content) Then 
content="" 
End IF 
Set regEx = New RegExp ' 建立正則表達(dá)式。 
regEx.Pattern = patrn ' 設(shè)置模式。 
regEx.IgnoreCase = true ' 設(shè)置忽略字符大小寫。 
regEx.Global = True ' 設(shè)置全局可用性。 
Zxj_ReplaceHtml=regEx.Replace(content,strng) ' 執(zhí)行正則匹配 
End Function 
%> 

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 肇州县| 天水市| 将乐县| 扶余县| 札达县| 潼关县| 平阳县| 三台县| 宁河县| 玉门市| 梓潼县| 静乐县| 恭城| 合作市| 临夏市| 历史| 玉林市| 镇雄县| 鲁山县| 固始县| 张家口市| 中超| 永春县| 西藏| 常熟市| 巨野县| 广东省| 汨罗市| 昌宁县| 依兰县| 台湾省| 阳西县| 墨脱县| 抚顺县| 兴安县| 屯门区| 扶风县| 渭南市| 阿坝县| 许昌县| 府谷县|