The PowerShell split operator is used to split strings based on a delimiter.
The default delimiter is white space
PS> $str = 'AA BB CC DD EE FF GG'
PS> -split $str
AA
BB
CC
DD
EE
FF
GG
You can define a delimiter
PS> $str = 'AA-B-CC… Read the full text.