my $title = "This is the New Title cool_image.gif Tue Feb 8 09:43:17 2005"; if ($title=~/(.*)\s+(\w+\.gif)/) { print $1 }else { print "no match" } #### $title=~/(.*)\s+(\w+\.\w+)/ #### $title=~/(.*?)\s+(\w+\.\w+)/
## $title=~/(.*)\s+(\w+\.\w+)/ ##
## $title=~/(.*?)\s+(\w+\.\w+)/