Inverted Split String List block

Right now Split String List with delimiter / parses this:
one/two/three/four
Into this:

  • S1: one
  • S2: two
  • S3: three
  • S4: four
  • S5:
  • S6:

However I’d like a block that inverts the outputs, so that same string would instead be parsed to:

  • S1; four
  • S2; three
  • S3; two
  • S4: one
  • S5:
  • S6:
1 Like

An inverted Truncate String List would be great too :slight_smile:

Maybe a runtime-level option available on all iterators to invert output order? Lists are pre-computed so inverting order is straightforward, would rather avoid multiple implementations.

2 Likes

Works for me