如何通过一组键值枚举哈希表作为键值对/过滤哈希表

时间:2016-06-04 22:55:25

标签: powershell hashtable

编者注: 这个问题有一个复杂的历史,但归结为这个:
*要了解如何通过键值对 枚举哈希表的条目,请参阅the accepted answer
*要了解如何通过键值集合
过滤哈希表,请参阅the other answer。 功能

我想我再次陷入了X Y问题,我最初的问题是关于过滤哈希表。我发现在创建哈希表之前过滤更容易。问题回答了,对吧?

不,Y问题是循环每个Key并使用@briantist帮助我的值。

我的目标是循环使用时间戳的键名,并使用键名作为任务名称和触发器来安排任务。

我正在使用Group-Object -AsHashTable -AsString -edit从CSV文件创建哈希表,这里值得一提的是,在创建HashTable之前过滤CSV只会使Pipeline或更简单脚本即可。

举个例子:

Import-CSV (ls -path D:\ -Filter source*.csv | sort LastWriteTime | Select -Last 1).FullName |
 where {$_.TimeCorrected -ne 'ManualRebootServer'} |
 group TimeCorrected -AsHashTable -AsString

我正在尝试遍历键名并能够使用以下方式显示键名:

$var = Import-Csv csv123.csv | Group-Object Value1 -AsHashTable -AsString

foreach ($key in $var.Keys){"The key name is $key"}

#Create a scheduled task named and triggered based on the HashTable keyname
#test test test
foreach ($key in $var.keys){IF($key -ne 'ManualRebootServer'){"Register-ScheduledJob"}}

我只是不确定如何从我感兴趣的键中获取值。

我发现以下内容有效,但仅在我手动输入密钥名称时才有效。我只是不确定如何组合两个循环。

($val.GetEnumerator() | Where {$_.key -eq '06-11-16 18:00'} | ForEach-Object { $_.value }).Server

2 个答案:

答案 0 :(得分:35)

你有一些选择。

通过键枚举:

foreach ($key in $var.Keys) {
    $value = $var[$key]
    # or
    $value = $var.$key 
}

枚举键值对(您已发现,但可能无法有效使用):

foreach ($kvp in $var.GetEnumerator()) {
    $key = $kvp.Key
    $val = $kvp.Value
}

答案 1 :(得分:9)

通过关注按键值数组过滤哈希表(PSv3 +语法)来补充briantist's helpful answer

# Sample hashtable.
$ht = @{ one = 1; two = 2; three = 3 }

# Filter it by an array of key values; applying .GetEnumerator() yields an array
# of [System.Collections.DictionaryEntry] instances, which have
# a .Key property and a .Value property.
$ht.GetEnumerator()  | ? Key -in 'one', 'two'

# Similarly, the *output* - even though it *looks* like a hashtable - 
# is a regular PS *array* ([Object[]]) containing [System.Collections.DictionaryEntry]
# entries (2 in this case).
$arrFilteredEntries = $ht.GetEnumerator()  | ? Key -in 'one', 'two'
$arrFilteredEntries.GetType().Name # -> Object[]

要进一步处理匹配的键值对,只需输入%ForEach-Object)并访问$_.Key$_.Value(值):

$ht.GetEnumerator()  | ? Key -in 'one', 'two' | 
  % { "Value for key '$($_.Key)': $($_.Value)" }

等效命令使用效率更高的foreach 循环 而不是管道:

foreach ($key in $ht.Keys) { 
  if ($key -in 'one', 'two') { "Value for key '$($key)': $($ht.$key)" }
}

注意:在 PSv2 :中 *不支持运算符-in,但您可以使用-contains代替操作数 swapped
'one', 'two' -contains $key
*在管道中,使用Where-Object { 'one', 'two' -contains $_.Key }

使用样本哈希表,产生:

Value for key 'two': 2
Value for key 'one': 1

注意输出中的键顺序与定义顺序的不同之处;在PSv3 +中,您可以创建有序哈希表([ordered] @{ ... })以保留定义顺序。

上面使用的密钥过滤技术 not 仅限于通过 literal 密钥数组进行过滤;任何(字符串)集合将作为-in操作数的RHS,例如不同哈希表的.Keys集合:

# Sample input hashtable.
$htInput = @{ one = 1; two = 2; three = 3 }

# Hashtable by whose keys the input hashtable should be filtered.
# Note that the entries' *values* are irrelevant here.
$htFilterKeys = @{ one = $null; two = $null }

# Perform filtering.
$htInput.GetEnumerator()  | ? Key -in $htFilterKeys.Keys | 
  % { "Value for key '$($_.Key)': $($_.Value)" }

# `foreach` loop equivalent:
foreach ($key in $htInput.Keys) {
  if ($key -in $htFilterKeys.Keys) { "Value for key '$($key)': $($htInput.$key)" }
}

结果与静态filter-keys数组的示例相同。

最后,如果您想过滤哈希表 仅使用已过滤的条目创建哈希表

# *In-place* Updating of the hashtable.
# Remove entries other than the ones matching the specified keys.
# Note: The @(...) around $ht.Keys is needed to clone the keys collection before
# enumeration, so that you don't get an error about modifying a collection
# while it is being enumerated.
foreach ($key in @($ht.Keys)) { 
  if ($key -notin 'one', 'two') { $ht.Remove($key) } 
} 

# Create a *new* hashtable with only the filtered entries.
# By accessing the original's .Keys collection, the need for @(...) is obviated.
$htNew = $ht.Clone()
foreach ($key in $ht.Keys) { 
  if ($key -notin 'one', 'two') { $htNew.Remove($key) }
} 

暂且不说:

[System.Collections.DictionaryEntry]的默认输出格式(以及哈希表([System.Collections.Hashtable]))使用列名Name而不是Key; Name定义为<由 PowerShell 添加的Key的em>别名属性(它不属于[System.Collections.DictionaryEntry].NET type definition;请与
确认 @{ one = 1 }.GetEnumerator() | Get-Member)。