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 t
$CreateDT.Split(\" \")
Foreach-object operation statement:
$a,$b = 'hi.there' | foreach split . $a,$b hi there