I'm using the following to get a website URL out of a text file:
eregi("<a href=\"http://(.*)\">$", $str, $regs);
echo $regs[1];
however, the RegEx will grab everything from the first <a href="http:// until the final "> in the entire document. How can I set it up to stop at the first ">
Thanks..
John