Skip to main content
Known Participant
December 19, 2022
Question

Array forming

  • December 19, 2022
  • 3 replies
  • 3 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
    Brainy
    December 19, 2022

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

    rupaa0642Author
    Known Participant
    December 19, 2022

    Thanks, it did the trick.

    komalj3844
    Participating Frequently
    December 28, 2022

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