Opposite of Split in PowerShell (Non-cmdlet)

powershell

Solution

$result = [string]::join(".", $array)

Problem

What is the opposite function of the following? ``` $tmp = $domain.split(".") ``` In other words, how do I transfer an array to a string. I've heard of "join", but I can't get it to work. Non-cmdlet, non-quest, this has to work with PowerShell v1 and all of the older systems!

Original source