정규식 일치(정규식) 모드는 데이터 일치 및 대체 코드 복사를 수행합니다.
<%
'/* 함수 이름: Zxj_ReplaceHtml ClearHtml
'/* 함수 언어: VBScript 언어
'/* 기능: 파일 HTML 형식 지우기 기능
'/* 전달 매개변수: 내용(참고: 지워야 할 내용)
'/* 기능 작성자: 장샤오쥔(고대 도시 동화) QQ:382511147
'/* 함수 설명: 데이터 매칭 및 교체를 위한 정규 매칭(정규식) 패턴
기능 ClearHtml(콘텐츠)
Content=Zxj_ReplaceHtml(&#[^>]*;, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?marquee[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?object[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?param[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?embed[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?table[^>]*>, , 콘텐츠)
콘텐츠=Zxj_ReplaceHtml(,,콘텐츠)
Content=Zxj_ReplaceHtml(</?tr[^>]*>, , 콘텐츠)
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=Zxj_ReplaceHtml(</?td[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?script[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml((javascript|jscript|vbscript|vbs):, , 콘텐츠)
Content=Zxj_ReplaceHtml(on(mouse|exit|error|click|key), , Content)
Content=Zxj_ReplaceHtml(<//?xml[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(<//?[az]+:[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?font[^>]*>, , 콘텐츠)
Content=Zxj_ReplaceHtml(</?b[^>]*>,,Content)
Content=Zxj_ReplaceHtml(</?u[^>]*>,,Content)
Content=Zxj_ReplaceHtml(</?i[^>]*>,,Content)
Content=Zxj_ReplaceHtml(</?strong[^>]*>,,Content)
ClearHtml=콘텐츠
기능 종료
함수 Zxj_ReplaceHtml(patrn, strng,content)
IF IsNull(content) 그러면
내용=
IF 종료
Set regEx = New RegExp ' 정규식을 만듭니다.
regEx.Pattern = patrn ' 패턴을 설정합니다.
regEx.IgnoreCase = true ' 대소문자를 무시하도록 설정합니다.
regEx.Global = True ' 전역 가용성을 설정합니다.
Zxj_ReplaceHtml=regEx.Replace(content,strng) '정규 매칭 수행
기능 종료
%>