I'm just trying to do a simple deletion of an element in C#. If my html element contains the text [Store Logo] then I want to remove it. Example:
<img src="http://src.sencha.io/300/80/http://images.company.com/[Store Logo]" />
Since it has [Store Logo] then I'd like to delete the whole image tag. I was trying to use RegEx to do it but it's hard to understand how to use all the symbols together and I read that I'm not supposed to use regex to parse html. What is the best way to remove it?
doesn't have an end tag among others – Harrison Oct 09 '13 at 19:55