string.left()

Returns a substring from beginning of the input string, with a length specified by the count argument.

string.left( count=number )

Returns: String

Argument Description
count
number, required

A non-zero integer. A positive value of n will return n characters from the beginning of the string.

A negative value of n will return (length - n) characters from the beginning of the string.

Examples

str="Effort Never fail";
	writeOutput(str.left(6));

See also