I'm trying to find a regular expression to match a certain portion of this html code:
<TR class=""> <TD align=left>WebContainer : 312</TD> <TD align=left>hung</TD> <TD align=left>2014-06-13</TD> <TD align=right>08:20:14</TD> <TD align=right>-</TD> <TD align=right>01:57:46</TD> </TR>
And I need to match the exact bold string starting with the hyphen and ending at the </TD>
tag.
Also, The 24hr clock in the bottom line needs 01
for the hour portion. I can figure out the clock portion as \d{1}1:\d{2}:\d{2}
but as for grabbing the whole string including the newline I'm stuck. Please help?