Im atempting to parse a webrequest. What is best way? Get the variable to a String array or Object array?
The webrequest supplies a string object, but I can't split by line because some lines are multiple..
Would comma delimit be best bet? Im having difficulty and running out of ideas.
$webresponse = (invoke-webrequest -Uri "https://docs.google.com/spreadsheets/d/e/2PACX-1vR99VhhEfs2VKo3FWuTqC66vEzlmiqAODGiAaicmswvyf3PdtOX2YYoP72ou52CdUpgqEbr9OAK6X0x/pub?output=csv").content
If I split by comma
$webresponse.Split(",")
I can get it into a string array, but then not sure on next step OR even if this is most efficient way through this task. Any help would be greatly appreciated Thanks in advance