How to compare iterate value?

I'mnoob

Member
Im trying to create a macro which loops a array and checks if size of iterator value is more than 3, if it is then it will add it it in a new array.

I tried doing this but facing problem. I've attach a ss of how I tried implementing this.

If u have urs idea please let me know.
Thanks!
 

Attachments

  • Screenshot_20231106-134209-723.png
    Screenshot_20231106-134209-723.png
    110.9 KB · Views: 11
Last edited:

Endercraft

Moderator (& bug finder :D)
Iterator value means the value of the key, which here isn't a number. If you want the key so 0,1,2.. you want to use [iterator_array_index]
 

I'mnoob

Member
Iterator value means the value of the key, which here isn't a number. If you want the key so 0,1,2.. you want to use [iterator_array_index]
Tell me if it's wrong.

Array1 = ["ding", "ding"]
If I iterate using this Array1

And use iterator_value then the first value should be "ding".

And if I want to convert into length of words like ding has 4 character. I can't pass? {Size=iterator_value}?

Besides I want the iterator value not the index
 
Top