- or download this
if($files=~/(.*?)\/([^\/]+)$/) {
$f_name = $2;
}
- or download this
# match all non-slashes up to end of line
if($files=~m|([^/]+)$|) {
$f_name = $1;
}
- or download this
# match everything beyond last slash
if($files=~m|.*/(.+)|) {
$f_name = $1;
}