Help for this page

Select Code to Download


  1. or download this
        ...
        my($key, $value) = split(/\t/,$_,2);
        # might also need to do this:  $value =~ s/\t/ /g;
        $$hash{$key} = $value;
        ...