English 中文(简体)
将 csv 中的数据从“ ” 替换为“ null” 电壳
原标题:Replacing data in a csv from "" to "null" powershell

我在读一个CSV 的电动外壳脚本。 脚本拉出具体的数据, 然后写到不同的 CSV 。 是否有一种方法我可以用“ 无效” 一词来取代任何“ ” 值?

最佳回答

我认为这应该给你一些东西 开始用...

@ 
Foo,Bar
"",""
Alfa,Beta
Gamma,""
"",Delta
 @ | ConvertFrom-csv | Foreach-Object { 
    foreach ($Property in $_.PSObject.Properties) {
        if ([string]::IsNullOrEmpty($Property.Value)) {
            $_.($Property.Name) =  NULL 
        }
    }
    $_
} | ConvertTo-Csv -NoTypeInformation

可以尝试 尝试将“ ” 替换为“ NULL ”, 但如果您有更复杂的数据, 它可能会给您一些意外的结果, 在 PSObject 上工作 。 Propers 收藏没有这样的瑕疵/ 风险 。

问题回答

暂无回答




相关问题
Styling rows in table that uses CSV data through PHP

I ve been working on this simple code that puts a CSV file into a nice table. But because the data is imported, styling ODD rows is a pretty hard thing to do. All I need would be a method to address ...

PHP - Sanitise a comma separated string

What would be the most efficient way to clean a user input that is a comma separated string made entirely on numbers - e.g 2,40,23,11,55 I use this function on a lot of my inputs function clean($...

marking duplicates in a csv file

I m stumped with a problem illustrated in the sample below: "ID","NAME","PHONE","REF","DISCARD" 1,"JOHN",12345,, 2,"PETER",6232,, 3,"JON",12345,, 4,"PETERSON",6232,, 5,"ALEX",7854,, 6,"JON",12345,, ...

Interactive heat map in Flex

I’m at a very basic level with Flex and with programming in general. I am working on a project where I have data in an Excel (.csv) format, it’s a large Excel plot/matrix where each cell has a ...

热门标签