math.listMax: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page math.listMax to Math.listMax without leaving a redirect: Converting page title to first-letter uppercase) |
m (Conversion script moved page Math.listMax to math.listMax: Converting page titles to lowercase) |
(No difference)
|
Revision as of 23:40, 9 February 2023
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