math.listMax

From RPTools Wiki
Revision as of 19:14, 16 May 2020 by Selquest (talk | contribs) (Adding documentation for math.listMax() function coming in 1.7)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

math.listMax() Function

Introduced in version 1.7
Find the maximum value in a String List. Only allows numeric elements - any non-numeric values will produce an error.

Usage

[h: result = math.listMax(list)]
[h: result = math.listMax(list, delim)]

Examples

[h: list1 = "1,3,5.5,-4"]
[r: math.listMax(list1)]
[h: list2 = "1#2#3#4#1#2#3#1#2"]
[r: math.listMax(list2, "#")]

Returns:

 5.5
 4