Help for this page

Select Code to Download


  1. or download this
    my ( $index ) = split /\|/, $str;
    $data_hash{$index} = $str;
    
  2. or download this
    my ( $index, @rest ) = split /\|/, $str;
    $data_hash{$index} = join '|', @rest;