i have multiple strings containing a link like:
<A HREF="http://www.testings2">testings2</A>
<A HREF="http://www.blabla">blabla</A>
<A HREF="http://www.gowick">gowick</A>
i want to use a regex pattern that gets the uri within the href.
i could do like:
/".*?"/
but then the "" will come along. is there a way to just get the uri within the HREF="" without using preg_replace function?
thanks!