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";
            }