I need to write a regular expression for a HTML text block. What's making me sometrouble , is how to do it in a way that will check if the opening tag is the same as closing tag? What I have right now is:
"^(<b>*<i>*<u>*).*(</b>*</i>*</u>)$"
I'd also like to be able to input a text with multiple formatting (e.g. bold AND italic). Thanks in advance.