Help for this page

Select Code to Download


  1. or download this
    local $\ = "\n";  # line feed at end of print
    while(<>) {
    ...
            print $2;
        }
    }
    
  2. or download this
     
    local($\, $,) = ("\n", " "); 
    while(<>) {
    ...
            print $1, $3;
        }
    }