So I have a page with the following HTML, its obviously very poorly done but I need to run some automation and part of that includes getting the date below.
<tr>
<td class="bold">
Last Login
</td>
<td colspan="3" class="usual">
4/1/2011 at 07:01:11 AM </td>
</tr>
Ideally I'd like to extract the contents of the second <td>
and then convert it to Unix time but just grabbing it will be enough.
I was thinking this could be done with regex but you would have to reiterate through it a couple times to pull the contents.