i wanna to know the best regular expression to replace this string with the vid_id in it
$code = '<object width="420" height="345"><br />
<param name="movie" value="http://www.badoobook.com/clips/swf/player.swf"></param><br />
<param name="allowFullScreen" value="true"></param><param name="flashvars" value="vid_id=100226&MainURL=http%3A%2F%2Fwww.bado obook.com%2Fclips&em=1"><br />
<embed src="http://www.badoobook.com/clips/swf/player.swf" flashvars="vid_id=100226&MainURL=http%3A%2F%2Fwww. badoobook.com%2Fclips&em=1" type="application/x-shockwave-flash" allowScriptAccess="always" width="420" height="345" allowFullScreen="true"></embed></object>'
$regular = '';
$code = preg_replace($regular ,'$1' , $code);
echo $code;
the vid id in this code is
value=
"
vid_id=100226&
thanks for helping