You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »


Supported list types

Number list

The function returns a STRING LIST 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.

Syntax
textOnNumberList(number list numbers, string text_expression) #Output: String list
Examples
Parser expressionDescription
textOnNumberList([1, 2, 3, 4, 5], substring("smile", 0, ^))

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

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a TEXT LIST


Text list

The function returns a TEXT LIST 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.

Syntax
textOnStringList(string list strings, string text_expression) #Output: Text list
Examples
Parser expressionDescription
textOnStringList(["albert", "riCHard", "MARY"], capitalizeWordsFully(^%))

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

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a TEXT LIST