Possible Duplicate:
Matching images links containing spaces
my code is:
preg_match_all('#(?:<\>]+href=\")?(?:http://)?(http(s?)://([^\s]*)\.(jpg|gif|png))#',$imagelinks, $group_imagelink);
echo $group_imagelink[1][0];
echo $group_imagelink[1][1];
and content is (line-wrapped, originally in a single line):
$imagelinks = "http://www.site.com/images/img.jpghttp://site.com/2011/06/img.jpghttp://site.org/en/thumb/e/ec/img.jpghttp://site.com/wp-content/uploads/2010/12/img.jpghttp://www.site.com/assets/resources/2006/09/Civilization-3-0001.jpghttp://www.site.com/fr/images/screenshots/img.jpghttp://site.com/wp-content/gallery/img.jpghttp://site.com/images/G/01/software/detail-page/img.jpg";
Can some one help me to have a correct pregmatch all to extract first , second etc... links from text with images and with out spaces.
