Help for this page

Select Code to Download


  1. or download this
    @data = split /($RE{quoted})|\./;
    
  2. or download this
    @data = grep length, split /($RE{quoted})|\./;
    
  3. or download this
    my $accum;
    @data = map {
    ...
            }
            split /($RE{quoted})|\./;
    push @data, $accum;