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.

Array Of Strings

Array of strings. You can use variables of the arrstr type for working with arrays of strings. The arrstr type is inherited from the arr type. So, you can also use methods of the arr type.

 

Operators

arrstr = type Convert types to the array of strings.
str = arrstr Convert an array of strings to a multi-line string.
arrstr += type Append types to an array of strings.

Methods

arrstr.insert Insert a string to an array of strings.
arrstr.load Add lines to the array from multi-line string.
arrstr.read Read a multi-line text file to array of strings.
arrstr.replace Replace substrings for the each item.
arrstr.setmultistr Create a multi-string buffer.
arrstr.sort Sort strings in the array.
arrstr.unite... Unite strings of the array.
arrstr.write Write an array of strings to a multi-line text file.

Related Methods

buf.getmultistr Convert a buffer to array of strings.
str.lines Convert a multi-line string to an array of strings.
str.split Splitting a string.

Type

arrstr The main structure of array of strings.