Well you might be able to do it that way if, say, you created a new HTML document from the inner html of each table row and then scanned that for the <a> tags. So you'd have something like (structure not code)

For Each <tr> in Original HTML
New HTML = inner <tr>
For each <a> in New HTML
Append Text inner <a>
Next
Append Text separator
Next