I have a string that need to convert into an array.
E.g: local!name: "shukur", - > {"s","h","u","k","u","r"}How can we add that?
Discussion posts and replies are publicly visible
a!forEach( items: enumerate(len("shukur")), expression: index("shukur",fv!index,{}) )
Using more advanced features like partial evaluation this could be solved like this
mid("shukur", _, 1)(1 + enumerate(len("shukur")))
docs.appian.com/.../Expressions.html