I have a value written in some file...
"v1", "v2", "v3", "v4"
If I read it as a line from the file, the entire value comes as a string. I can loop/foreach and make it a string array, but I am curious to find out if that's the only option I have? Can I have a simple conversion way in PowerShell to change the string to array, as we typically do like...
$s = @("v1", "v2", "v3", "v4")