Ciao a tutti, questo è il codice di una RE per eliminare i tag HTml.

Function TogliTAG(Stringa)
Dim RegEx, Temp

Temp = Stringa
Set RegEx = New RegExp
RegEx.Pattern = "<[^>]*>"
RegEx.Global = True
RegEx.IgnoreCase = True
Temp = RegEx.Replace(Temp, "")
Set RegEx = Nothing

TogliTAG = Temp
End Function

Ma se io volessi eliminare i tag che scrive un forum??? tipo [img ... ] ...

come posso fare???

Grazie