How about a regex that finds everything that has the structure of
<AAA
whatever></AAA>
i.e. all empty html elements.
Or, even better, all elements that either are empty or that contain just a space.
EDIT Looks like this one is working, though I'm not entirely sure why.
Code:
<[^/>]+>[ \n\r\t]*</[^>]+>