how to remove Html tags from string in c# July 5, 2007 by alirazazaidi use this function public string Strip(string text) { return Regex.Replace(text, @”<(.|n)*?>”, string.Empty); }