$iframe_string = ''; preg_match('/src="([^"]+)"/', $iframe_string, $match); /*Output all the matches by the expression*/ print_r($match); /*Get the index of the array*/ $url = $match[1]; echo $url;