jojacafe
11/13/2015 - 3:24 PM

Coger solo el texto de un string html

Coger solo el texto de un string html

public string GetText(string text)
{
    Regex htmlRegex = new Regex("<.*?>", RegexOptions.Compiled);
    return htmlRegex.Replace(System.Web.HttpUtility.HtmlDecode(text), string.Empty);
}
Función genérica para eliminar el html de un string.