Programación: Eliminar código HTML mediante ASP
Viernes 10 de Octubre, 2008 por Antonio ParedesEsta función viene a ser muy útil si deseamos eliminar las etiquetas HTML desde un sitio web en ASP.
1 2 3 4 5 6 7 8 |
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 |
Vía: Aspalliance
Noticias relacionadas
Ver más artículos
- ↑ Siguiente: Inspiración
- ↓ Anterior: Foto: El fotógrafo más cotizado

Nuestro antiguo Blog fue XKOD
















