How to create a string from character array

I have a char array [‘a’,‘b’,‘c’,’ ',‘x’,‘y’,‘z’]
I want a string “abc xyz”

Please guide how can I achieve that.

1 Like

Hi,

You can use the following in the Assign Activity
result = String.Join(" ", test)

Here in place of test please use your Char Array Name

1 Like

@AKKSHAY_DHADGE

new String(charArr.Select(Function(ch) ch.Trim("'".ToCharArray)))