Hi I am Learning Appian development, i have doubt how to combine two text local variables please hep me on this
a!localVariables
(
localVar1: Text := "Hello,",
localVar2: Text := " World!" )
local!combinedText := local!localVar1 & local!localVar2
Discussion posts and replies are publicly visible
We can use concat() function in which we need to wrap both the local variables local var1 and local var2 in concat() function and for the spacing in between we can use char(32). for ex:- concat(localvar1,char(32),localvar2).