Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
Welcome to the Monastery
 
PerlMonks  

Re^2: Word replace - notetab light vs perl

by kiat (Vicar)
on Oct 06, 2005 at 11:02 UTC ( [id://497954]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Word replace - notetab light vs perl
in thread Word replace - notetab light vs perl

Thanks, Courage :)

Did you mean the following?

use Benchmark; $start = new Benchmark; open(FH, "wrongs") or die $!; open(FH2, ">wrongs2") or die $!; undef $/; $lines = <FH>; $counted2 = $lines =~ s/wrongs/wrongs4/g; print FH2 "$lines"; $/ = "\n"; close (FH); close (FH2); $end = new Benchmark; # calculate difference $diff = timediff($end, $start); print "replaced: $counted2 The operation took: " , timestr($diff, 'all +');

Replies are listed 'Best First'.
Re^3: Word replace - notetab light vs perl
by Courage (Parson) on Oct 06, 2005 at 14:18 UTC
    yes, you're fast to learn. :)
    regular expressions were speed-optimized a lot. Do RTFS a bit, and you'll have an idea on what I have in mind.

    A drawback of such optimization - no-one now can improve that code, because it is highly complicated.

    Well, this is not the only place on where perl has good speed abilities.

    Best regards,
    Courage, the Cowardly Dog

      Ilya has that general effect. :-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://497954]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.