powershell Powershell脚本用于解析csv中的xml并展开它
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Powershell脚本用于解析csv中的xml并展开它相关的知识,希望对你有一定的参考价值。
$records = Import-Csv BadResults.csv
foreach($record in $records){
$xml = new-object System.Xml.XmlDocument
$fraudScore = $record.FraudScoreDetails
$xml.LoadXml($fraudScore)
foreach ($i in $xml.response.rule){
#Write-Output $i.criteriaEvaluated
#Write-Output $i.evaluationResult
$record | Add-Member NoteProperty $i.criteriaEvaluated $i.evaluationResult
}
}
$records | Export-Csv -Path ExpandedBadResults.csv -NoTypeInformation
以上是关于powershell Powershell脚本用于解析csv中的xml并展开它的主要内容,如果未能解决你的问题,请参考以下文章
powershell 用于启动IIS express的Powershell脚本
powershell Powershell脚本,用于在Windows中启用自然滚动
powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。
powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。
powershell 用于在Windows上运行东西的PowerShell脚本
powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。