EnglishРусский  

Ads

Scriptius script builder
Provides the best choice in work automation and great time saving features.

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

CSV

Working with CSV data. Variables of the csv type allow you to work with data in the csv format.

string1_1,"string1_2",string1_3
string2_1,"string2_2",string2_3

The csv type is inherited from str type. So, you can use string methods and operators. For using this library, it is required to specify the file csv.g (from lib\csv subfolder) with include command.
include : $"...\gentee\lib\csv\csv.g"

 

Operators

foreach var,csv Foreach operator.

Methods

csv.append Adds a string to a csv object.
csv.clear Clear the csv data object.
csv.read Read data from a csv file.
csv.settings Set separating and limiting characters for csv data.
csv.write Writing csv data to a file.
Edit