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