Help for this page

Select Code to Download


  1. or download this
    # this is in a loop that iterates through the file
    # and at some point it runs across:
    ...
                                    $hash{$1} = split /,/, $2;
                                    next;
                                    };
    
  2. or download this
    Use of implicit split to @_ is deprecated
    
  3. or download this
          /(\S+)\s?=?\s?\[(.+)\]$/  && do {
                                    $hash{$1} = @{[ split /,/, $2 ]};
                                    next;
                                    };