我想特別從我的ASP字符串中刪除任何代碼。從ASP字符串帶IFRAME
我目前使用這個:
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代碼。
有人可以幫忙嗎?
非常感謝
非常感謝,gpinkas。當我有服務器訪問時,我會在明天早上嘗試第一件事。將讓你知道:-) – michaelmcgurk
它確實工作得很好。榮譽,先生/夫人GPinkas! – michaelmcgurk