我想专门<iframe>
从我的 ASP 字符串中删除任何代码。
我目前正在使用这个:
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
但是,我意识到这将删除所有 HTML,而不仅仅是 IFRAME 代码。
有人可以帮忙吗?
非常感谢