in reply to Re: Probably silly regex question / not so silly regex question
in thread Probably silly regex question / not so silly regex question

I was just going to write that... I use File::Basename all the time for filename splitting. Hasn't failed me yet and heres how you do your bit.
use strict; use File::Basename; my $file = '/ftp/dest/id.ext'; my ($name, $path, $suffix); my @suffixes = ('.ext'); # Extra extensions can be added to the list. ($name, $path, $suffix) = fileparse($file, @suffixes);
Coffee, KitKat, and a new script to write. It's gonna be a good day....
  • Comment on RE: Re: Probably silly regex question / not so silly regex question
  • Download Code

Replies are listed 'Best First'.
RE: RE: Re: Probably silly regex question / not so silly regex question
by theorbtwo (Prior) on Aug 02, 2000 at 20:14 UTC

    Ah, beutiful. I saw File::Spec (and use it), but I missed File::Basename.

    Thanks,
    James Mastros,
    Just Another Perl Initate