I would like to know how to add the url of the site in front of the existing src of all the images of an example string:
<img src="images/teste.jpg" border="0" width="486" height="370" style="margin: 5px; float: left;" />
<img src="images/teste2.jpg">
To:
<img src="www.meusite.com/images/teste.jpg" border="0" width="486" height="370" style="margin: 5px; float: left;" />
<img src="www.meusite.com/images/teste2.jpg">
What regular expression can I use for this?