string textBlock = "текст где искать...";
string patternContainer = "<A href=\"([^\"]+)\">>></A></TD></TR></TBODY></TABLE>";
MatchCollection matches = Regex.Matches(textBlock, patternContainer);
if (matches.Count > 0)
{
foreach (Match match in matches)
{
Console.WriteLine(match.Value);
}
}