Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
      if (m/\((KB\d+)\)\s*$/) {
        print "$1\n";
      }
    }
    
  2. or download this
    # Change default separator to \n"
    $/ = "\n\"";
    ...
      # Removes \n
      s/\n/ /g;
    }