While I'm trying to print the whole array value with help of a message box it's showing an empty message only


If I’m using any loop it shows the values one by one but I want to print the whole value with the help of a single message box.

Hi @Kumar_Sahu_Sameer

You should assign a array like
{“Cat”,“Dog”,“Cow”,“Monkey”}

Each should be seperated you are using inside single double quotes
Use this Expression

String.join(",",str_Array)

Rrgards
Sudharsan

3 Likes

If you use like this
{“Cat,Cow,Dog,Monkey”} it will be considered as single array item @Kumar_Sahu_Sameer

Regards
Sudharsan

1 Like

Hi @Kumar_Sahu_Sameer

You input is in Array(String),

So you need to process like str_Array(0) it will get the first occurrence.

If you need all the value String.join(" ",str_Array)

Regards
Gokul

1 Like

Check out the output @Kumar_Sahu_Sameer

image

Regards
Gokul

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.