I am trying to determine in which column the name "Phone" appears, by checking the HTML of a web page. The string in which I am doing the search looks like this :
<tr class="C1">
<td>Name</td>
<td>Address</td>
...
... < some more columns, but their number is not fixed >
...
<td>Phone</td>
...
... <more columns>
...
</tr>
Is it possible to determine using regular expressions ?