EnglishРусский  

   ..

   csv.g

   dest.csv

   example.g

   src.csv

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

source\lib\csv\example.g
 1 include {
 2 	"csv.g"
 3 }
 4 
 5 func ex_csv<main>
 6 {
 7  	csv src_csv, dest_csv
 8 	uint i
 9 
10    src_csv.read( "src.csv")
11 	src_csv.settings( ';', '#', '#' )
12    foreach ar, src_csv
13    {
14 		print( "---------------------------------------------\l" )
15     	fornum i=0, *ar
16 		{
17 			print( ar[i] + "\l" )
18 		}
19 		dest_csv.append( ar )
20 	}
21 	dest_csv.write( "dest.csv" )	
22    print( "Press any key" )
23    getch()
24 } 
Edit