math.listSum

From RPTools Wiki
Revision as of 22:35, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page math.listSum to Math.listSum without leaving a redirect: Converting page title to first-letter uppercase)
Jump to navigation Jump to search

math.listSum() Function

Introduced in version 1.7
Adds together the contents of a String List. Only allows numeric elements - any non-numeric values will produce an error.

Usage

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

Examples

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

Returns:

 5.5
 19