gpt4 book ai didi

powershell - 立即在定义为文字的哈希表中查找值

转载 作者:行者123 更新时间:2023-12-02 23:27:04 25 4
gpt4 key购买 nike

拥有哈希表文字并立即在其中查找值的最短,最好的方法是什么?

例如我期待着类似的东西

$city = @{"30328" = "Atlanta"; "60608" = "Chicago"} [$zipCode]

但这结尾是:

Unexpected token '[$zipCode]' in expression or statement.

最佳答案

只需删除空间:

$city = @{"30328" = "Atlanta"; "60608" = "Chicago"}[$zipCode]

要么
$city = @{"30328" = "Atlanta"; "60608" = "Chicago"}.$zipCode

关于powershell - 立即在定义为文字的哈希表中查找值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32532538/

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