Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

RE: Re: Probably silly regex question / not so silly regex question

by barndoor (Pilgrim)
on Aug 02, 2000 at 15:07 UTC ( [id://25696]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://25696]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (8)
As of 2024-04-18 08:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found