Help for this page

Select Code to Download


  1. or download this
    #/usr/bin/perl
    use strict;
    ...
    my $line = "FooBarBaz";
    my @array = unpack('A3A3A3',$line);
    print Dumper \@array;
    
  2. or download this
    $VAR1 = [
              'Foo',
              'Bar',
              'Baz'
            ];