Html code:
<div username="bob">
<table>
<tr>
<td>name</td>
<td>alex</td>
</tr>
<tr>
<td>location</td>
<td>London</td>
</tr>
<tr>
<td>id</td>
<td>123</td>
</tr>
</table>
</div>
<div username="apple">
<table>
<tr>
<td>name</td>
<td>david</td>
</tr>
<tr>
<td>id</td>
<td>321</td>
</tr>
</table>
</div>
<div username="pepper">
<table>
<tr>
<td>location</td>
<td>Bradford</td>
</tr>
</table>
</div>
I want to select the location by username.
for example:
bob location = London,
apple location = return false,
pepper location = Bradford
I want to get with regex.