Jump to content

Regex HELP to much info


CerealBH

Recommended Posts

Here is all the code if that helps any

 $url = "http://www.site.com/file.html";
$input = @file_get_contents($url) or die('Could not access file: $url');
$regexp = "so.addVariable\(\"content_video\", \"(.*?)";

if(preg_match_all("/$regexp/siU", $input, $matches, PREG_SET_ORDER))
{
foreach($matches as $match)
	{ 
//echo $match[0]; Matches what i want, and the rest of the page
//echo $match[1]; Matches what i want, and the rest of the page
echo $match[2]; //Supposed to be the link, comes up blank
echo "\n";
echo "\n";
} 

well ive gotten down to where

 $regexp = "so.addVariable\(\"content_video\", \"([^>]+)\);";

will return

so.addVariable("content_video", "http:/movie.flv");

now i just need to get the other crap out, do i need to perform another regex on it? im sure theres just something that im missing

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.