C# Regular Expression Code to Remove HTML tags in C#

Detailed article available in this link Regular Expression To Strip/Remove Html Tags From String in ASP.Net C#.Net VB.Net
  1. public static string StripHtmlTags(this string source)  
  2. {  
  3.     return Regex.Replace(source, "<.*?>|&.*?;"string.Empty);  
  4. }