Assuming I have a string like this:
$x = "abc"
I want to know, How can I turn it into an array like: ("a","b","c") ???
Currently I use something like:
$x -split ""
But that gives me an array like: ("","a","b","c","") with an empty element before and after the other ones...
I can circumvent this doing $x -split "" -ne "", but that seems kind of weird. Is there a better way?