I will get only the code from the date "today" (should be displayed) til "yesterday" (shouldn't be displayed)
This is the source code (all in ONE line):
I can regexp the html code with:.....muchHTMLcodeBefore<TD align=center WIDTH="16.6666666666667%" ALIGN="RIGHT" class=bcMTitle> Change </TD></TR><TR><TD ALIGN="RIGHT" class=bcText> 01/27/04</TD><TD ALIGN="RIGHT" class=bcText> 1154.25</TD><TD ALIGN="RIGHT" class=bcText> 1154.75</TD><TD ALIGN="RIGHT" class=bcText> 1151.00</TD><TD ALIGN="RIGHT" class=bcText> 1151.50</TD><TD ALIGN="RIGHT" class=bcTextRed> -2.75</TD></TR></TABLE><TABLE WIDTH="100%" BORDER=0 CELLPADDING=2 CELLSPACING=1><TR><TD WIDTH="16.6666666666667%" ALIGN="RIGHT" class=bcText>01/26/04</TD><TD WIDTH="16.6666666666667%" ALIGN="RIGHT" class=bcText>1140.00</TD><TD ...and so on (all in one line)
But how can I get only the blue colored one (just from the date today til yesterday).[regsub -all {<[^>]*>} $line {} line]
(Date is changing daily of course

Thanks!