Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print Dumper \@array;
    splice @array, 3, 2, join( ":", @array[ 3..4 ] ) ;
    print Dumper \@array;