
14/01/2002, 04:39
|
| | Fecha de Ingreso: agosto-2001
Mensajes: 336
Antigüedad: 23 años, 8 meses Puntos: 0 | |
Re: Remover tag de un html Una vez me baje esta funcion pero no la he probado, espero que lo hagas tu y nos digas si funciona o hay que modificarla
<pre>
''By Steven Smith
Function RemoveHTML( strText )
Dim RegEx
Set RegEx = New RegExp
RegEx.Pattern = "<[^>]*>"
RegEx.Global = True
strText = Replace(LCase(strText), "<br>", chr(10))
RemoveHTML = RegEx.Replace(strText, "")
End Function
</pre>
Nos cuentas, vale? |