Regexp: replace HTML bare ikke <img
Hvis jeg har dette script der replacer AL HTML, hvordan kan jeg så ændre Pattern til at matche AL HTML uden IMG tagSå AL HTML replaces men <IMG taget bliver ikke rørt?
Function stripHTMLtags(HTMLstring)
Set RegularExpressionObject = New RegExp
With RegularExpressionObject
.Pattern = "<[^>]+>"
.IgnoreCase = True
.Global = True
End With
stripHTMLtags = RegularExpressionObject.Replace(HTMLstring, "")
Set RegularExpressionObject = nothing
End Function