How can I convert an array object to string?

I tried:

$a = "This", "Is", "a", "cat"
[system.String]::Join(" ", $a)

with no luck. What are different possibilities in PowerShell?

6 Answers
6

Leave a Reply

Your email address will not be published. Required fields are marked *