Help for this page

Select Code to Download


  1. or download this
    my @array = ('$one', '@two', '%three');
    my @qw_array = ($one @two %three);
    
  2. or download this
    my @array = qw(a b c d);
    my $temp_string = join ',' , @array;
    my @new_array = split ',' , $temp_string;