Help for this page

Select Code to Download


  1. or download this
    while(my $line = <$in>) {
      chomp $line;
    ...
      ...
    
    }
    
  2. or download this
    my ($x, $y) = $sample =~ /(\d+)(.*)/;
    $x = '?' unless $x;
    $y = '?' unless $y;