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
Examples
str="Effort Never fail";
writeOutput(str.left(6));
Returns a substring from beginning of the input string, with a length specified by the count argument.
string.left( count=number )
Returns: String
str="Effort Never fail";
writeOutput(str.left(6));