Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: File modification

by liverpole (Monsignor)
on Jul 07, 2006 at 12:24 UTC ( [id://559773]=note: print w/replies, xml ) Need Help??


in reply to File modification

Hi madtoperl,

A number of suggestions, actually...

  1. You should use "strict" and "warnings".
  2. You should use the 3-arg form of open.
  3. You should check for failure conditions, such as open failing, or @ARGV not being set.
  4. If you use the module FileHandle, your filehandles don't have to be typeglobs.
  5. It is redundant to do ($_ =~ /.../); instead just do (/.../).
  6. If you use regex captures, you don't have to split afterwards.
  7. You're not using $changeflag; get rid of it.
  8. Finally, you're writing every line to the file, so why not just do a regex substitution and, if it fails, write the line anyway?
  9. It's considered good form (though not technically necessary in this case) to close your files when you're done with them.

Here's my rewrite:

#!/usr/bin/perl -w use strict; use warnings; use FileHandle; (my $argact = shift) or die "Syntax: $0 <fileid>\n"; my $input = new FileHandle; my $newfile = new FileHandle; open($input, "<", "one.txt") or die "Failed to read 'one.txt' ($!)\n +"; open($newfile, ">", "output") or die "Failed to write 'output' ($!)\n +"; while(<$input>){ s/^Authentication\s+number\s+is\s+(\d+)/Authentication number is $ +argact/; print $newfile "$_"; } close $input; close $newfile;

Isn't that a lot cleaner?


s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/

Replies are listed 'Best First'.
Re^2: File modification
by roboticus (Chancellor) on Jul 07, 2006 at 12:51 UTC
    liverpole:

    ++ Excellent suggestions!

    One trivial note, though: Your blank lines appear to be a long string of blanks, as there are many unexpected line continuation characters on the screen here. (I just did a view source: The code lines don't appear to have trailing blanks, but all the blank lines do. I don't know if it's an artifact of how you pasted the code in, but I thought I'd mention it.)

    --roboticus

      Thanks, roboticus, for your kind comments, and the feedback about the "long lines".  I've fixed them.

      Yes you're right, it is an artifact of cut-and-paste.  I've seen it before, and usually just fix it by hand, though it can be tedious if it's a long program.  I don't know if it's the browser I'm using (Firefox), or if there's some easier way to fix it, but I'd be glad to hear of anyone else who's found a simpler solution.


      s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/
      ++liverpole,

      just to be pedantic... ;-)

      • check the return value of close FH (think NFS; file system full?)

      --shmem

      oops, this leaf wrong twig :-P

      _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                    /\_¯/(q    /
      ----------------------------  \__(m.====·.(_("always off the crowd"))."·
      ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

Log In?
Username:
Password:

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

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

    No recent polls found