I'd like to create a script that grabs two values from this awful HTML published on a city website:
558.35
and
66.0
These are water reservoir details and change weekly.
I'm unsure what the best tool to do this is, grep?
Thanks for your suggestions, ideas!
<table>
<tbody>
<tr>
<td> Currently:</td>
<td> 558.35</td>
</tr>
<tr>
<td> Percent of capacity:</td>
<td> 66.0%</td>
</tr>
</tbody>
</table>