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

Compare with Current View Page History

« Previous Version 2 Next »

The function returns a NUMBER LIST with all the numbers in argument l which are not in argument m. Duplicated numbers in l may appear in the output.

If you want to avoid repetition, use the function distinct().

Syntax
except(number list l, number list m) #Output: Number list
Examples
Parser expressionDescription
except([1, 2, 3, 4, 5], [2, 4])

The function returns a NUMBER LIST: [1, 3, 5]

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 NUMBER LIST