textOnStringList()

This function returns a text list resulting of evaluating text expression against each of the texts found in the textList parameter.

The parameter textExpression is an expression that returns a text, where %{seed.text} represents each text in parameter textList.


Bash
textOnStringList(textList, textExpression) #Output: Text list


Examples

Parser expression

Description

Bash
textOnStringList(["albert", "riCHard", "MARY"], capitalizeWordsFully(%{seed.text}))


This example returns:

 ["Albert", "Richard", "Mary"]


To achieve this, the following functions are used:

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

textList

text list

Any given number list.

textExpression

Text

A valid text expression.

Output

This function returns a text list


📚 Use cases and examples