I would like a regex to remove html tags and  , " etc from a string. The regex I have is to remove the html tags but not the others mentioned. I'm using .Net 4
Thanks
CODE:
String result = Regex.Replace(blogText, @"<[^>]*>", String.Empty);