I want to get url from the given data.
e.g. I have the data in a variable
$data = "is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, http://www.youtube.com/watch?v=mm78xlsADgc when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but";
Now I want to get this URL (http://www.youtube.com/watch?v=mm78xlsADgc) from the given variable $data
. Please let me know how can I do this?