How do I use C# regular expression to replace/remove all HTML tags, including the angle brackets? Can someone please help me with the code?
Add .+? in <[^>]*> and try this regex (base on this):
.+?
<[^>]*>
<[^>].+?>
c# .net regex demo