I have an PHP array of strings it looks like this
Array
(
[1] => Lorem ipsum dolor sit amet http://www.google.com/search?q=stackoverflow consectetur adipiscing elit.
[2] => Phasellus tempor vehicula fringilla. www.google.com/search?q=stackoverflow&ie=utf-8
[3] => google.com/search?q=stackoverflow&ie=utf-8 Aenean in cursus libero.
);
URLs will be all sorts of forms, what I need is an array of those links. Something like this:
Array
(
[1] => http://www.google.com/search?q=stackoverflow
[2] => http://www.google.com/search?q=stackoverflow&ie=utf-8
[3] => http://www.google.com/search?q=stackoverflow&ie=utf-8
);