HI ,
I have a requirement where I need to pass Sting values with separate Line to API .
here is the List of Sting with 4 items.
“28978937982932090”
“28978937982932091”
“28978937982932092”
“28978937982932093”
I want to send it as single string with line break to API
“28978937982932090
28978937982932090
28978937982932090”
Can you help me with this scenario.
Thanks in advance
Discussion posts and replies are publicly visible
You may be able to do this using the char() function. Join the list of strings with char(10) as the separator.
joinarray(local!yourListOfStrings, char(10))