in reply to Re: Removing File Extensions
in thread Removing File Extensions
withmy ($name, $ext) = $_ =~ m!\A(.*)\.([^.]+)\z!s;
my ($name) = $_ =~ m!\A(.*)\z!s;
Not in detail , i just want some idea.($name, $ext) = $_ =~ m!\A(.*)\.([^.]+)\z!s;
jdporter - added code formatting
|
|---|