I need to get this working:
PHP
First match should look for the following:
$pattern1 = "/<div rawurl\=\"(.*)\" class/"; // Add wildcard here as there will be 10 matches, we are only looking for one.
preg_match($pattern1, $file, $out1);
Then run a second check to see if our defined variable exists in the result from the first preg_match $out1,
$pattern2 = preg_quote("http://domain.com/extras/?possiblequery" ."/");
$pattern2 = "/".$pattern2."/";
if (preg_match($pattern2, $file, $out));
{ return result
I have trouble coding up the regular expression for these two preg_match lines... I am pretty sure it's the first one with the wildcard.. Any help is welcome!
.*to either.*?(ungreedy match) or[^"]*to match every character up until it hits a quote. This should work fairly well, though (as mentioned every time someone uses "RegEx" and "html" in question ) it's never a good idea to mix the two. – Brad Christie Dec 12 '10 at 19:59