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

Compare with Current View Page History

Version 1 Next »

This function expects in argument s a text containing numbers in decimal representation separated by characters in argument separators, and returns a number list.

Syntax
toNumberList(text s, text separators) #Output: Number list
Examples
Parser expressionDescription
toNumberList("1, 3, 5; 7; 11; 13", ",;")

This example returns the following number list: [1, 3, 5, 7, 11, 13]

Additional information

Parameters used in this function

ParameterInput (data type)Description
s

TEXT

Any given text.
separators

TEXT

Parameter description. Read more about Working with lists

Output

This function returns a NUMBER LIST