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: