Help for this page

Select Code to Download


  1. or download this
    while ($line =~ m/"([^"\\]*(?:\\.[^"\\]*)*)",?|([^,]+),?|,/g) {
    #                          ^^^
        push(@fields, defined($1) ? $1 : $2);
    #                                    ^^
    
  2. or download this
        push @fields, $1 // $2;
    
  3. or download this
        push @fields, $1 // $2 // '';