in reply to Removing File Extensions
my @files = qw( one.zip twotwo.doc three3.ppt ); my (@only_names, @only_ext); for (@files) { my ($name, $ext) = $_ =~ m!\A(.*)\.([^.]+)\z!s; push( @only_names, $name ); push( @only_ext, $ext ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Removing File Extensions
by sgifford (Prior) on May 01, 2004 at 20:35 UTC | |
|
Re: Re: Removing File Extensions
by BalochDude (Initiate) on May 01, 2004 at 19:38 UTC |