How to remove the <br> tag in my html string using HtmlAgilityPack in C#?
- by Saravanan
I have one HTML string and i am using HtmlAgilityPack for parsing html string.
This is my html string
<p class="Normal-P" style="direction: ltr; unicode-bidi: normal;"><span class="Normal-H">sample<br/></span> <span class="Normal-H">texting<br></span></p>
This HTML string has <br> tag in two places.So, i want to remove both the tags...
can you help me to remove all <br> tags in my html string...