EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

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.