Need to remove multiple instances of style="width:268px;height:34px;"
in a file.
The # of pixels is different in every line.
The following regular expression finds the pattern when tested in http://regexstorm.net/tester
^style="width:[0-9]{1,3}px;height:[0-9]{1,3}px;"$
But Visual Studio 2017 does not find any results. What am I doing wrong?
Sample input:
<tr>
<td nowrap="nowrap" style="width:268px;height:34px;"><a name="RANGE!A1">Advisors by Product</a></td>
<td nowrap="nowrap" style="width:133px;height:34px;"> </td>
<td nowrap="nowrap" style="width:64px;height:34px;"> </td>
<td nowrap="nowrap" style="width:92px;height:34px;"> </td>
</tr>
<tr>
<td nowrap="nowrap" style="width:268px;height:21px;"> </td>
<td style="width:133px;height:21px;"><strong>Advisors</strong></td>
<td nowrap="nowrap" style="width:64px;height:21px;"><strong>Office</strong></td>
<td nowrap="nowrap" style="width:92px;height:21px;"><strong>Phone</strong></td>
</tr>
<tr>
<td nowrap="nowrap" style="width:268px;height:21px;"><strong>Product A</strong></td>
<td nowrap="nowrap" style="width:133px;height:21px;"> </td>
<td nowrap="nowrap" style="width:64px;height:21px;"> </td>
<td nowrap="nowrap" style="width:92px;height:21px;"> </td>
</tr>