Help for this page

Select Code to Download


  1. or download this
    # Translate all '|' (pipe) characters into ' ' (spaces).
    while (<FILE>) {
      tr/|/ /;
      print OUTP;
    }