Function similar to a!joinarray in 22.4

Hello:

I am looking to convert an array of number to a single string with comma as the separator.  In 23.1, they have a function called a!joinarray which seems to be the function I want to use but I am on 22.4 CE.  So, the question is there a similar function that will enable me to accomplish this?  

Thank you.

Final desired result: 360392, 361150, 361177, 377913, 378165 

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to MaNa
    Am I missing something?

    Yes, I assume you're missing something, but I have no idea what it might be - so please post the code you're attempting to use, and a screenshot showing it plus the result (and any other context).  I've been using joinArray() since at least 2014 or so, and all Appian versions after that, so I am confident that our CE instances have it.

    Edit: here's code and a resultant screenshot that I literally just typed into my 22.4 CE instance:

    a!localVariables(
      
      local!arrayOfNumbers: {
        234235,
        45324052,
        8934,
        1,
        358905998
      },
      
      joinarray(local!arrayOfNumbers, ", ")
    )

Children
No Data