Skip to main content
April 8, 2023
Solved

Creating a string from a map

  • April 8, 2023
  • 2 replies
  • 0 views

Hello:

Is there a function that will convert a list of map-items to a string? I have this output but the input variable to an API-call is a string: "2404416,2257045,.......".  Guess, I could do a loop to concat the values to create the string but was wondering if there is an Appian function to do this.

Thanks.

Best answer by stefanhelzle0001

joinarray should do the job. The Appian documentation holds a list of al the available functions at your service.

joinarray(local!something.fdcId, ",")

https://docs.appian.com/suite/help/23.1/Appian_Functions.html

2 replies

stefanhelzle0001
Brainy
April 8, 2023

joinarray should do the job. The Appian documentation holds a list of al the available functions at your service.

joinarray(local!something.fdcId, ",")

https://docs.appian.com/suite/help/23.1/Appian_Functions.html

man0001Author
April 8, 2023

Thanks!