Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Regex To Remove File Extension

by n3toy (Hermit)
on Dec 10, 2008 at 20:04 UTC ( [id://729493]=note: print w/replies, xml ) Need Help??


in reply to Regex To Remove File Extension

You have plenty of good examples to chose from. This might work for you also:
my $string = 'foo.bar.txt'; $string =~ s/\.\w{3}$//;
Jamie

Replies are listed 'Best First'.
Re^2: Regex To Remove File Extension
by grep (Monsignor) on Dec 10, 2008 at 21:09 UTC
    You're assuming too much, your regex will fail on:
    index.html foo.pl CGI.pm video.mpeg foo.pl~
    and you'll get a bad result with *nix dotfiles
    .foo .bar

    Focus on the requirements - 1) A file must contain an extension 2) the extension is everything following the final dot

    my @names = qw/ index.html foo.pl CGI.pm video.mpeg foo.pl~ .bash_hist +ory .bash_rc /; foreach my $string ( @names ) { print "$string -> "; $string =~ s/(.+)\.[^.]+$/$1/; print "$string\n"; }
    grep
    One dead unjugged rabbit fish later...
      Yours is a much better solution than my simple one.

      Although my solution works for the example given, it does assume that all filenames are of the format provided in the original post and does not take into consideration the examples you provided.

      Thanks for the feedback and great sample code!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-26 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found