$string = "The quick brown fox jumps over the lazy dog."
$string.split()
Uses a split to break apart the string
PS C:\> $string = "The quick brown fox jumps over the lazy dog." >> $string.split() The quick brown fox jumps over the lazy dog.
$string = "The quick brown fox jumps over the lazy dog."
$string.split()
DetailsPS C:\> $string = "The quick brown fox jumps over the lazy dog." >> $string.split() The quick brown fox jumps over the lazy dog.