I am parsing an html file in C# and extracting the text from html. My html file has a lot of tags in it. Html file has select tag and option tag. I need a regex for removing the select tag and option tag from html file. I don't want this information. So I want to delete it using any regex.
Below is the html that I want to remove from my html file:
<select name="state" onchange="setCities();" id="state">>
<option value="CA" selected="selected">CA</option>
<option value="WA">WA</option>
<option value="TX">TX</option>
<option value="NV">NV</option>
<option value="CO">CO</option>
<option value="MI">MI</option>
<option value="SC">SC</option>