Below is my sample text .
<ul>
<li><a href="www.google.com" target="blank">Google</a></li>
<li><a href="www.yahoo.com" target="blank">Yahoo</a></li>
<li><a href="www.bing.com" target="blank">Bing</a></li>
</ul>
I would like to add an extra attribute in anchor tag with the value of hyperlink like below.
<ul>
<li><a href="www.google.com" target="blank" aria-label="Google">Google</a></li>
<li><a href="www.yahoo.com" target="blank" aria-label="Yahoo">Yahoo</a></li>
<li><a href="www.bing.com" target="blank" aria-label="Bing">Bing</a></li>
</ul>
I want to do this using notepad++ regular expression. Appreciate your help !!