Help for this page

Select Code to Download


  1. or download this
    $list = join ',', map { $_ = "!" . $_; } @array1;
    
  2. or download this
    foreach my $t (@array1) { push @array2, "!" . $t; ;
    print join ",", @array2;