Help for this page

Select Code to Download


  1. or download this
        my (@title) = split(/\n/,$output);
    
  2. or download this
        my ($title, $data) = split /\n/, $output, 2;
    
  3. or download this
        ...
        print ">".$title."\n".$data."\n";
    
  4. or download this
        print ">$output\n";