ASKER
<QUESTION id="(\d+)" Score="(\d+)" name="(.*?)" (?:value="){0,1}(.*?)(?:" ){0,1}/>
ASKER
where do I incorporate it into my code?Please answer my prior question about what your output needs to look like?
ASKER
[xml]$xml = Get-Content C:\tmp\test.xml
$xml.RESULTSCACHE | export-csv test.csv
The out needs to in a table Format so I can import into a SQL table
ASKER
ASKER
[xml] $xml = Get-Content C:\tmp\test.xml
$xml.ResultsCache | export-csv -NoType C:\tmp\Results.csv
$xml.ResultsCache.Page | % { $_.Question } | export-csv -NoType C:\Tmp\Questions.csv
$xml.ResultsCache.Page.Question | export-csv -NoType c:\temp\Questions.csv
ASKER
ASKER
ASKER
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
Open in new window
Once the XML object is loaded, you can traverse the object similarly to other PS objects!