in reply to
RE: RE:(3) handling file uploads.
in thread
handling file uploads.
The core
File::Basename
module may be of assistance. You might also have luck with a regex like the following:
$filename =~ s!.*[/\]([^/\]*?)!$1!;
I put more stock in the module than in my regex, however.
Comment on
RE: RE: RE:(3) handling file uploads.
Download
Code
In Section
Seekers of Perl Wisdom