FUNCTION stripTags(HTMLstring)
SET RegularExpressionObject = New RegExp
WITH RegularExpressionObject
.Pattern = "<[^>]+>"
.IgnoreCase = TRUE
.Global = TRUE
END WITH
stripTags = RegularExpressionObject.Replace(HTMLstring, "")
SET RegularExpressionObject = NOTHING
END FUNCTION
'WEB' 카테고리의 다른 글
[Web Standards] 이미지 버튼을 이용한 팝업 (0) | 2014.07.18 |
---|---|
[Web Standards] 종료(닫기)태그 미사용하는 요소 (0) | 2014.07.11 |
[Web Standards] Style Cursor Hand (링크 손가락 표시) (0) | 2014.07.11 |
[ASP] 변수타입반환함수 (0) | 2014.06.18 |
[HTML] 좌우정렬하기 (0) | 2012.04.04 |