Help for this page

Select Code to Download


  1. or download this
    my @splice_array = (2, 3..7);
    print @array[@splice_array];
    
  2. or download this
    my $splice_str = "2,3..7";
    print @array[eval $splice_str];