Help for this page

Select Code to Download


  1. or download this
    my @KEY = split (/[\s:]/,$_);
    
  2. or download this
    my @KEY = split( /: /, $_ );
    
  3. or download this
    for each data line
    {
    ...
    
       assign array of arrays to hash
    }