To continue with my util class, this is how you clear all html from a text.

public static String ClearHTML(String text) {
    Regex reg = new Regex("<[^>]*>");
    return reg.Replace(text, " ");           
}