function_<function name>(<parameters>) - list(number, number)
- compare(number, number)
- compare(text, text)
- lowercase(text)
- uppercase(text)
| Functions that derive useful text values that can be used as substitution variables. ExamplesFunction | Result | Description |
---|
%function_list(0,9)% | 0,1,2,3,4,5,6,7,8,9 | Produce a comma separated range of numbers. | %function_compare(-5,5)% | -1 | Compare 2 numbers or strings to product -1, 0 or 1 for less than, equal, or greater than. | %function_compare(5,5)% | 0 |
| %function_compare(5,0)% | 1 |
| %function_compare(, )% | 0 |
| %function_compare(%function_lowercase(Xyz)%, xyz)% | 0 | Compare text for natural order less than, equal, or greater than. | %function_lowercase(Xyz)% | xyz | Lowercase text | %function_uppercase(Xyz)% | XYZ | Uppercase text |
| - list since 9.7
- compare since 9.7
- lowercase since 9.7
- uppercase since 9.7
|