我有两个来自两个不同XML文件的数据的哈希表。我想要做的是根据两个表中的公共值将两个表组合成一个哈希表。
Inv Hash:
$invHash = $invXML.InventoryDto.ProductInventoryItem.SkuInventoryItem |
select @{ L = 'SkuID'; E = { $_.SkuId } }, @{ L = 'SkuStatusCode';
E = { if ($_.SkuStatusCode -eq 'Active') { 'True' } else { 'False'} } },
@{ L = 'QuantityOnHand'; E = { $_.QuantityOnHand } }
$ invHash的示例内容:
SkuID SkuStatusCode QuantityOnHand
----- ------------- --------------
1828 True 441
3022 True 325
2981 True 214
2989 True 842
PriceHash:
$priceHash = $priceXML.PricingDto.ProductPricingItem.SkuPricingItem |
select @{ L = 'SkuID'; E = { $_.SkuId } }, @{ L = 'RegularPrice';
E = { $_.PriceGroup.RegularPrice } }, @{ L = 'CurrentPrice';
E = { $_.PriceGroup.CurrentPrice } }
$ priceHash的样本内容:
SkuID RegularPrice CurrentPrice
----- ------------- --------------
1828 49.99 48.99
3022 25 19.99
2981 45 39.99
2989 28 18.99
$ invpriceHash的所需内容:
SkuID SkuStatusCode QuantityOnHand RegularPrice CurrentPrice
----- ------------- -------------- -------------- --------------
1828 True 441 49.99 48.99
3022 True 325 25 19.99
2981 True 214 45 39.99
2989 True 842 28 18.99
答案 0 :(得分:5)
鉴于:
f1.csv是:
SkuID,SkuStatusCode,QuantityOnHand
1828,True,441
3022,True,325
2981,True,214
2989,True,842
f2.csv是:
SkuID,RegularPrice,CurrentPrice
1828,49.99,48.99
3022,25,19.99
2981,45,39.99
2989,28,18.99
试试这个牵强解决方案,不如join-object
那么好,因为你需要知道这些属性。您还需要谨慎使用+
和$a
之间的$b
运算符,这不是可交换的,它会更改群组顺序:
$a = Import-Csv C:\temp\f1.csv
$b = Import-Csv C:\temp\f2.csv
$b + $a | Group-Object -Property skuId |
% {$x= New-Object -TypeName psCustomObject -Property
@{SkuID=$_.name;RegularPrice=$_.group[0].RegularPrice;
CurrentPrice=$_.group[0].CurrentPrice;
SkuStatusCode=$_.group[1].SkuStatusCode;QuantityOnHand=$_.group[1].QuantityOnHand};
$x}
对我来说它给出了:
QuantityOnHand : 441
RegularPrice : 49.99
SkuStatusCode : True
SkuID : 1828
CurrentPrice : 48.99
QuantityOnHand : 325
RegularPrice : 25
SkuStatusCode : True
SkuID : 3022
CurrentPrice : 19.99
QuantityOnHand : 214
RegularPrice : 45
SkuStatusCode : True
SkuID : 2981
CurrentPrice : 39.99
QuantityOnHand : 842
RegularPrice : 28
SkuStatusCode : True
SkuID : 2989
CurrentPrice : 18.99