ACTIVE SERVER PAGE > ASP Á¤±Ô½Ä - ű×ÀÇ ¾ÖÆ®¸®ºäÆ®¸¦ ¸ðµÎ Á¦°ÅÇÏ´Â ÇÁ·Î±×·¥
µî·ÏÀÏ : 2017-07-03 12:03
Á¶È¸¼ö : 53,182
'Á¤±Ô½ÄÀ» ÀÌ¿ëÇÑ HTML ű×Á¦°Å
Function tagFree(str_)
Dim temp_Str
If Len(str_) > 0 Then
Set crabz = New Regexp
crabz.Pattern = "<[^>]+>"
crabz.Global = True
temp_Str = crabz.Replace(str_,"")
End if
tagFree = temp_Str
End Function