时间:2021-05-28
去除html标签正则<\/*[^<>]*>
FunctionLoseHtml(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<\/*[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
SetRegEx=Nothing
LoseHtml=ClsTempLoseStr
Endfunction
去除网页中的class
FunctionLoseClassTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="(class=){1,}(""|\'){0,1}\S+(""|\'|>|\s){0,1}"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseClassTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseScriptTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="(<script){1,}[^<>]*>[^\0]*(<\/script>){1,}"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseScriptTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseIFrameTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="(<iframe){1,}[^<>]*>[^\0]*(<\/iframe>){1,}"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseIFrameTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseObjectTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="(<object){1,}[^<>]*>[^\0]*(<\/object>){1,}"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseObjectTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseSpanTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}span[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseSpanTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseFontTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}font[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseFontTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseATag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}a[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseATag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseDivTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}div[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseDivTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseStyleTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="(<style){1,}[^<>]*>[^\0]*(<\/style>){1,}"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseStyleTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseNoteTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<!--\/*[^<>]*-->"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseNoteTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseTableTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}table[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseTableTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseTDTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}td[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseTDTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
FunctionLoseTRTag(ContentStr)
DimClsTempLoseStr,RegEx
ClsTempLoseStr=Cstr(ContentStr)
SetRegEx=NewRegExp
RegEx.Pattern="<(\/){0,1}tr[^<>]*>"
RegEx.IgnoreCase=True
RegEx.Global=True
ClsTempLoseStr=RegEx.Replace(ClsTempLoseStr,"")
LoseTRTag=ClsTempLoseStr
SetRegEx=Nothing
EndFunction
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
正则表达式replace()函数:此函数用指定的字符串替换字符串中与正则表达式匹配的子字符串。返回值是一个替换后的新字符串。这里只介绍正则表达式的相关操作,其他
正则表达式概述正则表达式在程序设计语言中存在着广泛的应用,特别是用来处理字符串。如匹配字符串、查找字符串、替换字符串等。可以说,正则表达式是一段文本或一个公式,
正则表达式概述正则表达式在程序设计语言中存在着广泛的应用,特别是用来处理字符串。如匹配字符串、查找字符串、替换字符串等。可以说,正则表达式是一段文本或一个公式,
正则表达式常用来在所有语言中搜索字符串的任何模式或文字。MongoDB还提供了正则表达式功能的字符串模式使用正则表达式$regex操作符。MongoDB使用PC
在计算机科学中,正则表达式用来描述或者匹配一系列符合某个句法规则的字符串的单个字符串。在WEB开发中,正则表达式通常用来检测、查找替换某些符合规则的字符串,如检