출처: http://snippets.dzone.com
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
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
'asp' 카테고리의 다른 글
csv파일을 asp를 이용해 db에 저장하는 방법 (0) | 2010.07.09 |
---|---|
BASE64 인코딩 디코딩 함수 (0) | 2010.06.28 |
Visual Basic 또는 VBA에서 Excel 데이터에 ADO를 사용하는 방법 (0) | 2010.06.28 |
엑셀 데이터를 DB 저장 (0) | 2010.06.28 |
ASP(Active Server Page) Excel Component (0) | 2010.06.28 |