stringarray

Generates a structure for a string array of a specified size.

Syntax

stringarray(size)

Argument

size
The number of zero length strings in the new array.

Example

Templex Expression Results
{s = stringarray(3);

s[0] = "One"

s[1] = "Two"

s[2] = "Three"

s}

{"One", "Two", "Three"}