Tengo una expresion en html como esta:
Código HTML:
<a href="http://www.gratisprogramas.us/" title="">http://www.gratisprogramas.us/</a>
Uso este preg_match
Código PHP:
$str = preg_match('/<a[^>]*href="([^"]*)"[^>]*>.*<\/a>/', $content, $matches);
echo $str;
para que me extraiga
Código HTML:
http://www.gratisprogramas.us/
y no logro hacerlo, me pueden decir como solucionarlo?