Status
Tech review

Style guide




Short description

Returns a in result of evaluating text_expression against each of the numeric values in argument numbers.

Output




Supported list types


Number list

The function returns a in result of evaluating text_expression against each of the numeric values in argument numbers. Argument text_expression is an expression that returns a string, where ^ represents each numeric value in argument numbers.


textOnNumberList(number list numbers, string text_expression) #Output: String list



Parser expressionDescription


textOnNumberList([1, 2, 3, 4, 5], substring("smile", 0, ^))


The function returns the ["s", "sm", "smi", "smil", "smile"]



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a



Text list

The function returns a  resulting of evaluating text_expression against each of the strings in argument strings. Argument text_expression is an expression that returns a string, where ^% represents each string in argument strings.


textOnStringList(string list strings, string text_expression) #Output: Text list



Parser expressionDescription


textOnStringList(["albert", "riCHard", "MARY"], capitalizeWordsFully(^%))


The function returns the ["Albert", "Richard", "Mary"]



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a