find/replace for arrays?

Options
I have an array where the order matters - and I'm trying to find the best way to replace a specific entry with something else at the same index.

I figured out a way by converting to string, replacing, and then turning back to an array... but it's clunky. Wondering if there's a better way?

[image.png]

Comments

  • Michael Udinski
    Michael Udinski Administrator

    ADMIN

    Options
    Alternatively, you could use Array: Find First Index then use an update variable function to update the array at that found index with your new value