This function returns a number list with results of the given calculation performed for each text in the specified list.

Syntax
mathOnStringList(textList, mathExpression) #Output: Number list
Examples
Parser expressionDescription
mathOnStringList(["a", "ab", "abc", "abcd", "abcde"], length(%{seed.text}))

This example returns the following number list:

[1, 2, 3, 4, 5]


To achieve this, the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
textList

TEXT LIST

Any given text list.
mathExpression

TEXT

A valid math expression.
Output

This function returns a NUMBER LIST


Use cases and examples