Help for this page

Select Code to Download


  1. or download this
    while( <FILE> )
    {
    ...
        print FILE2 join ',' , @_;
        print FILE2 "\n";
    }
    
  2. or download this
    print FILE2 join( ',', split )."\n" while <FILE>;
    
    #or
    use SuperSplit;
    print FILE2 superjoin( ',', supersplit_open( $filename ) );