Quantcast
Channel: Fórum ASP
Viewing all articles
Browse latest Browse all 1214

Removendo HTML a partir do texto em ASP

$
0
0

Removendo HTML a partir do texto em ASP

 

Function RemoveHTML( strText )
    Dim nPos1
    Dim nPos2
    
    nPos1 = InStr(strText, "<")
    Do While nPos1 > 0
        nPos2 = InStr(nPos1 + 1, strText, ">")

 


Viewing all articles
Browse latest Browse all 1214