Some regular expression for finding HTML tags in code.
It is - as always is the case with regular expression in my view - not perfect, but it'll do for fast, simple parsing.
Find HTML tags:
<[^>]*>
This can be modified easy to find HTML tags except for anchor tags (for example):
<[^>aA]*>