Help for this page

Select Code to Download


  1. or download this
    print map { "$_|" } @my_list
    
  2. or download this
    $my_id_list .= $my_list[$i]."|";
    
  3. or download this
    push ( @my_id, "$my_list[$i]|" );
    
  4. or download this
    push ( @my_id, $my_list[$i] );
    
  5. or download this
    join('|',@my_id);