Help for this page

Select Code to Download


  1. or download this
    while (<>) {    
       s/$searchPattern1/$repalcePattern1/g;
    ...
       s/$searchPattern3/$replacePattern3/g;
       print;
    }
    
  2. or download this
    while (<>) {
       if (s/$searchPattern1/$repalcePattern1/g) {
    ...
    
       print;
    }
    
  3. or download this
    s/\s*\z/\n/;