Jump to content

[SOLVED] Regex Link Grabber


jjacquay712

Recommended Posts

Here is my script with the regex:

 

<?php
$code = file_get_contents($_GET['page']);
preg_match_all('/href=\"(.*)\"/', $code, $array);
echo '<pre>';
print_r($array);
echo '</pre><br />';
foreach ($array[1] as $lol => $val) {
echo $val . '<br />';
}
?>

 

when i want to get the links from google.com the regex returns garbage. I'm not to good at regex, are there any problems you can see with it? i also want it to match when the <A> tag is capitalized. Thanks, jjacquay712

Link to comment
Share on other sites

This is a question for the regex sub-forum. 

 

Here is a site with some thorough regex examples: http://regexlib.com/DisplayPatterns.aspx?cattabindex=7&categoryId=8

 

<?php
$code = file_get_contents($_GET['page']);
preg_match_all('(?<HTML><a[^>]*href\s*=\s*[\"\']?(?<HRef>[^"\'>\s]*)[\"\']?[^>]*>(?<Title>[^<]+|.*?)?</a\s*>)/', $code, $array);
print_r($array);
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.