Help for this page

Select Code to Download


  1. or download this
               $names12[$i]=@myNames[$i].',';
    #should be 
               $names12[$i]=$myNames[$i].',';
    
  2. or download this
    # execute as
    perl -n program.pl < myTextFile
    ...
        print join(',', @names12);
    }