Skip to main content
December 19, 2022
Question

Array forming

  • December 19, 2022
  • 3 replies
  • 0 views

Hello All,

I have forloop giving the values like this.

"Test.txt"
"Test - Copy.txt"
"Untitled_1.log"
"DB connection.xml"
I wanted to form an array of this like {"Test.txt","Test - Copy.txt","Untitled_1.log","DB connection.xml"}.
How can I do this.

    3 replies

    harshitb6843
    December 19, 2022

    Can you please switch to expression mode and see if you are getting the expected output?

    rupaa0642Author
    December 19, 2022

    Thanks, it did the trick.

    komalj3844
    December 28, 2022

    joinarray({"Test.txt",
    "Test - Copy.txt",
    "Untitled_1.log",
    "DB connection.xml"},",")