$url = 'http://www.fubar.com/fileXXX.txt'; # name and extension ($file) = $url =~ m|^.*/(.*)$|; print "$file\n"; # if you want the name without the extension $ext ='txt'; ($file) = $url =~ m|^.*/(.*)\.$ext$|o; print "$file\n";