运行以下代码时:
$folderPath = '\\dc1\shared\BI\HisRms\'
$folderPathDest = 'C:\Users\jonathon.kindred\Desktop\RM2\'
$Columns = 'SKU', 'Landed Cost', 'Current Std Price', 'Current Sale Price', 'Free Stock', 'Markdown', 'Published Calc'
Get-ChildItem $folderPath -Name |
ForEach-Object {
$filePath = $folderPath + $_
$filePathdest = $folderPathDest + $_
Import-Csv $filePath | Select $Columns |
Export-Csv -Path $filePathDest
}
“到岸成本”、“当前标准价格”、“当前销售价格”以 ? 例如 ?12.00。
我只想在导出期间从这些列中删除 £ 符号,所以我只有十进制值。有谁知道我会怎么做?