How we will covert ("INDIA") TO {"I","N","D","I","A"}. How we will write in expression rule?
Discussion posts and replies are publicly visible
1st way:
{ a!localVariables( local!Arry: stripwith(trim("INDIA"), " "), local!len: len(local!Arry), a!forEach( items: enumerate(local!len) + 1, expression: a!forEach( items: local!Arry[fv!item], expression: fv!item ) ) )}
2nd way:
{ a!localVariables( local!word: stripwith(trim("INDIA"), " "), char(code(local!word)), ) }