i tried but i did not get exact output, any one try this ..
a!localVariables( local!expression: "x+y-x*y", local!result: a!forEach( items: enumerate(len(local!expression)) + 1, expression: local!expression[fv!index] ), local!arryIndex: { x: wherecontains(touniformstring({ "x" }), local!result), y: wherecontains(touniformstring({ "y" }), local!result), }, local!etdata: a!update( data: local!result, index: { local!arryIndex.x, local!arryIndex.y }, value: { 10, 20 } ),local!etdata)
Discussion posts and replies are publicly visible
I have no idea why, or if this is what you are looking for...but:
a!localVariables( local!expression: "x+y-x*y", local!x: 10, local!y: 5, substitute( substitute( local!expression, "x", local!x ), "y", local!y ) )
?
thank you brother, nice
Glad it works for you! Feel free to mark this thread as correctly guessed in that case