I looked at PowerShell split a few posts back. This time I’ll look at the opposite action – PowerShell join.
Lets look at a simple string
PS> $str = 'PowerShell for Windows and Linux'
and split it
PS> $strs = -split $str
PS> $strs
PowerShell… Read the full text.