No. Regular expressions can not by definition parse HTML.
You could use a regex to s/<[^>]*\>// or something naive like that but it's going to be insufficient, especially if you're interested in removing the contents of tags.
As another poster said, use an actual HTML parser.