gpt4 book ai didi

variables - 使用变量来引用哈希表的内容

转载 作者:行者123 更新时间:2023-12-03 08:22:17 24 4
gpt4 key购买 nike

我正在尝试按通过参数传入的名称来引用哈希表。

前任。

TestScript.Ps1 -specify TestDomain1,TestDomain2

TestScript.ps1 的内容:
param(
[string[]]$specify
)


$TestDomain1 = @{"Name" = "Test1", "Hour" = 1}
$TestDomain2 = @{"Name" = "Test2", "Hour" = 2}

foreach($a in $specify)
{
write-host $($a).Name
#This is where I would expect it to return the Name value contained in the respective
# hash table. However when I do this, nothing is being returned

}

有没有另一种方法来获得这些值?有没有比使用哈希表更好的方法?任何帮助,将不胜感激。

最佳答案

我可能会使用哈希散列:

param (
[string[]]$Specify
)

$Options = @{
TestDomain1 = @{
Name = 'Test1'
Hour = 1
}
TestDomain2 = @{
Name = 'Test2'
Hour = 2
}
}
foreach ($a in $Specify) {
$Options.$a.Name
}

关于variables - 使用变量来引用哈希表的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18450672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com