JavaScript Regular expressions, match and replace link
- by Thoman
Hello
please help me
 <html>
  <body>
       http://domainname.com/abc/xyz.zip
       http://domainname2.com/abc/xyz.zip 
 </body>
 </html>
I want replace with link and out put like
 <html>
  <body>
      <a href="http://domainname.com/abc/xyz.zip">http://domainname.com/abc/xyz.zip</a>
      <a href="http://domainname2.com/abc/xyz.zip">http://domainname2.com/abc/xyz.zip</a>
 </body>
 </html>
Great Thank