How can I use regex to find everything except for data within div with a specific style? e.g.
<div style="float:left;padding-left:10px; padding-right:10px">
<img src="../Style/BreadCrumbs/Divider.png">
</div>
<div style="float:left; padding-top:5px;">
Data to keep
</div>
<div style="float:left;padding-left:10px; padding-right:10px">
<img src="../Style/BreadCrumbs/Divider.png">
</div>
I want regex to match everything except for the data. The best way I can see is to just remove the html markup and combine the files afterwards with vb (I already have the code for vb.)
I'm using regex because I need to extract the data from several hundred files.