Help for this page

Select Code to Download


  1. or download this
    use SuperSplit;
    
    $array = supersplit('\s+','\n','\n----\n',\*DATA');
    
  2. or download this
    my $str = '';
    while( <DATA> )
      $str .= $_ unless m|^[/-]|;
    }
    $array = supersplit('\s+','\n','\n----\n',$str);
    
  3. or download this
    for (@$array){
      print $_->[1][3]."\n";  #remember indici start at zero
    }