Help for this page

Select Code to Download


  1. or download this
    @array = qw(one two three);
    $p_str=join ",",@array;
    
  2. or download this
    @array = qw(one two three);
    $p_str = '?'x@array;
    
  3. or download this
    @array = qw(one two three);
    $p_str = join ",",'?'x@array;
    
  4. or download this
    @array = qw(one two three);
    $p_str = join ",","???";
    
  5. or download this
    ???