Dec-05-2022, 08:12 PM
(Dec-05-2022, 08:08 PM)deanhystad Wrote:(Dec-05-2022, 07:53 PM)astral_travel Wrote: i need to create a sum of the chunks of numbers (chunks = the numbers between the separators).And why do you need a list for that?
okay, you're right, i don't...
but i just don't know how to sum the chunks...i wrote a lil more code in the message above..
if it's one long array of numbers you simply use
sum()
and that's it....but sum() doesn't work when you're trying to add up the numbers up to the delimiter...