Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @array = split m{$rxSplit}, $str;
    
    print Data::Dumper->Dump([\@array], [qw{*array}]);
    
  2. or download this
    @array = (
               'A',
    ...
               'Y',
               'Z'
             );