Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: find & replace a string in perl

by mertserger (Curate)
on Nov 25, 2010 at 10:10 UTC ( [id://873611]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
     if( $line =~ s/\btest\b/^\#/ig ) {
                    print  "$line\n";
            }
    
  2. or download this
    
     if( $line =~ m/test/ ) {
                    $line = "#" . $line;
                    print  "$line\n";
            }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-16 21:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found