hi there,
i've got a problem with syn of "addElement".
looking for the right syn to add more than one element to a list at a time.
values are in a list (about 250 values) and i have to copy every seventh value into another list.
any idea?
thanx
addElement syn
Moderator: Martin
- schuster666
- Posts: 52
- Joined: 13 Nov 2013 14:03
- Location: Germany / Neuss
addElement syn
-- the world would be better without people--
-- but boring --
-- but boring --
Re: addElement syn
Maybe a loof through the list with an index that increases on every loop. Then, if (index%7==0) copy the value to the other list.