Hi all, I want to detect <a href..></a> tag using regex and replace it's href value with specific value..

like

<a href="a.aspx" >a.aspx</a>
to

<a href="http://xyz/a.aspx" >a.aspx</a>

I don't know how to use regex and it's urgent.

Normal testing conditon for heperlink are like

Code:
<a href=a.aspx> ' Without Double Quotes
<a href= a.aspx> 'Space after =
<a href="a.aspx"> ' Normal
<a
href="
a.aspx">  'New line
IT'S REALLY URGENT plz help me guys.