Help for this page

Select Code to Download


  1. or download this
    print "\nConcatenation and join (without parens)- NOT OK\n";
    $cols = '[' . join('],[', @array . ']');
    
  2. or download this
    $cols = join ',', map { "[$_]" } @array;