Created
November 24, 2016 04:31
-
-
Save nazwadi/39ab723d933a607aef2172d2168c9c86 to your computer and use it in GitHub Desktop.
Powershell Convert XML to CSV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[xml]$books = Get-Content .\books.xml | |
$books.library.book | % {$_.title} | |
$books.library.book | % {$_.title} | ? { $_ -match 'starfish' } | |
$books.library.book | Export-Csv "books.csv" -NoTypeInformation -Delimiter:"," -Encoding:UTF8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment