I am using Notepad++, wherein I have to find and remove the immediate duplicate HTML tag which is shown below
Actual
<a href="www.google.com"><a href="www.google.com">www.google.com</a></a>
Required
<a href="www.google.com">www.google.com</a>
I have a regex to find duplicates which comes in new line, but my search will be with in a line.
Pl help me