Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: how to Check file type?

by ChuckularOne (Prior)
on Dec 02, 2010 at 19:07 UTC ( [id://874990]=note: print w/replies, xml ) Need Help??


in reply to how to Check file type?

Another way to grab the extension is to put the split name in an array and pop the last element.
#!/usr/bin/perl -w my $filename = "this.is.my.filename.txt"; my @bits = split /\./, $filename; print pop @bits;

Replies are listed 'Best First'.
Re^2: how to Check file type?
by TomDLux (Vicar) on Dec 02, 2010 at 19:44 UTC

    Saving the whole array and then popping off the last element uses up lines and adds variables. I'd rather wrap the split in parentheses and reference the last element.

    my $suffix = ( split /\./, $filename )[-1];

    The only danger is that if the only reason you're getting the suffix is to print it, you need more parentheses to prevent print from thinking a subset of the expression is its argument list:

    print ( split /\./, $filename )[-1]; # wrong print (( split /\./, $filename )[-1]); # unpleasant

    As Occam said: Entia non sunt multiplicanda praeter necessitatem.

      Thanks, that was basically (however inelegantly) what I was trying to accomplish. Printing was just for demonstration purposes.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (8)
As of 2024-04-19 09:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found