In this post I asked if there were any tools that compare the structure (not actual content) of 2 HTML pages. I ask because I receive HTML templates from our designers, and freq
I don't know any tool but I know there is a simple way to do this:
?<=^|>)[^><]+?(?=<|$
) and replace them with an empty string (""
), i.e. delete all the text. After this step, you will have all HTML markup tags. There are a lot of free regular expression tools out there.