array to text
Team,
I have below code :
a!localVariables(
local!data1:{"test1<br>","test2<br>"},
local!data1
)
Output is list of text strings
- "test1<br>"(Text)
- "test2<br>"(Text)
I want the output to be in format "tetst1<br>test2<br>"
Basically i am formatting a data before sending into email template but it is appearing like below , i want the semicolon to be removed.
Test1
; Test2
It should be like below
Test1
Test2
ANy suggestions ?
