Help for this page

Select Code to Download


  1. or download this
        my @data = map { chomp; [ split ',' ] } <DATA>;
    
  2. or download this
        my @data = map { chomp; [ map { /"(.*)"/ ? $1 : $_ } split ',' ] }
    + <DATA>;