I have a string, which I have split using the code $CreateDT.Split(" ")
. I now want to manipulate two separate strings in different ways. How can I separate these into two variables?
Like this?
$string = 'FirstPart SecondPart'
$a,$b = $string.split(' ')
$a
$b