일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- curl
- roundcube
- html5
- 안드로이드 gcm
- xe
- FCM
- not working
- php 취약점
- PHP
- Mail Server
- soundpool
- C#
- 폼메일
- javascript
- dovecot
- php 시큐어코딩
- 안드로이드 푸쉬
- WebView
- 자바스크립트
- android 효과음
- UML
- 안드로이드 푸시
- Android
- chart.js
- 우분투
- 안드로이드
- 설치
- 자동 생성
- mysql
- C# IO
- Today
- Total
그러냐
[asp] html태그 삭제하기 본문
' 태그 삭제하기
1.
Function RegDeleteHtml(str)
Set reg = New RegExp
reg.Pattern = "<[^<|>]*>" 'Test(검색-문자열)
reg.IgnoreCase = True 'replace (검색-문자열, 대체-문자열)
reg.Global = True 'Execute (검색-문자열)
RegDeleteHtml=reg.replace(str,"")
end Function
2.
Function stripHTML(strHTML)
Dim objRegExp, strOutput
Set objRegExp = New Regexp
objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = "<.+?>"
strOutput = objRegExp.Replace(strHTML, "")
strOutput = Replace(strOutput, "<", "<")
strOutput = Replace(strOutput, ">", ">")
stripHTML = strOutput
Set objRegExp = Nothing
End Function
Html = "<P>asdfasdf</P>"
Html = Html & "<P>asdfasdf</P>"
Html = Html & "<P><STRONG>asdfasdf</STRONG></P>"
Html = Html & "<P><FONT face=""courier new, courier, mono"" size=6>asdfasdf</FONT></P>"
Text = stripHTML(Html)
Response.Write left(Text,10)
[출처] [asp] html태그 삭제하기|작성자 구름나그네
'asp' 카테고리의 다른 글
[ASP] ASP에서 OLE DB를 이용한 MSSQL 연결하기 (0) | 2016.01.28 |
---|---|
[ASP]이미지 크기 구해서 브라우저 띄우기 (0) | 2016.01.28 |
php-asp DB연동등 (0) | 2016.01.28 |
파일업-Dext (0) | 2016.01.28 |