What would be a quick way to extract the value of the title attributes for an HTML table:
... Procl
Use the regexp below
title="(.[^"]+)"
and then use Groups to browse through matched elements.
EDIT: I have modified the regexp to cover the examples provided in comment by @Staffan Nöteberg