Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Using expressions in arrays for pattern matching

by yosefm (Friar)
on Dec 01, 2003 at 22:29 UTC ( [id://311425]=note: print w/replies, xml ) Need Help??


in reply to Re: Using expressions in arrays for pattern matching
in thread Using expressions in arrays for pattern matching

Nice, but I have one nitpick:

my $thisout = substr($i, 0, index($i, ".")) . ".txt"
What about names like "my.file.rpt" (pretty common style on *nix)?

Since we are already through with $i (let's call it $file from now on), we can do:

$file =~ s/\.rpt$/.txt/i; #case insensitive open OUTPUT, ">$file";

Replies are listed 'Best First'.
Re: Re: Re: Using expressions in arrays for pattern matching
by melora (Scribe) on Dec 02, 2003 at 00:22 UTC
    I like that better, thanks for the nitpick!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-25 07:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found