web-dev-qa-db-fra.com

PowerShell a-t-il des tableaux associatifs?

J'écris une fonction qui renvoie un identifiant, une paire de noms.

Je voudrais faire quelque chose comme

$a = get-name-id-pair()
$a.Id
$a.Name

comme c'est possible en javascript. Ou au moins

$a = get-name-id-pair()
$a["id"]
$a["name"]

comme c'est possible en php. Puis-je le faire avec PowerShell?

30
George Mauer

aussi

$a = @{'foo'='bar'}

ou

$a = @{}
$a.foo = 'bar'
50
Doug Finke

Oui. Utilisez la syntaxe suivante pour les créer

$a = @{}
$a["foo"] = "bar"
22
JaredPar

Ajoutera également le moyen d'itérer à travers la table de hachage, car je cherchais la solution et n'en ai pas trouvé une ...

$c = @{"1"="one";"2"="two"} 
foreach($g in $c.Keys){write-Host $c[$g]} #where key = $g and value = $c[$g]
11
Ivan Temchenko
#Define an empty hash
$i = @{}

#Define entries in hash as a number/value pair - ie. number 12345 paired with Mike is   entered as $hash[number] = 'value'

$i['12345'] = 'Mike'  
$i['23456'] = 'Henry'  
$i['34567'] = 'Dave'  
$i['45678'] = 'Anne'  
$i['56789'] = 'Mary'  

#(optional, depending on what you're trying to do) call value pair from hash table as a variable of your choosing

$x = $i['12345']

#Display the value of the variable you defined

$x

#If you entered everything as above, value returned would be:

Mike
9
Joshua

Vous pouvez également le faire:

function get-faqentry { "meaning of life?", 42 }
$q, $a = get-faqentry 

Tableau non associatif, mais tout aussi utile.

-Oisine

1
x0n

Créer à partir d'une chaîne JSON

$people= '[
{
"name":"John", 
"phone":"(555) 555-5555"
},{
"name":"Mary", 
"phone":"(444) 444-4444"
}
]';

# Convert String To Powershell Array
$people_obj = ConvertFrom-Json -InputObject $people;

# Loop through them and get each value by key.
Foreach($person in $people_obj ) {
    echo $person.name;
}
1
factorypolaris

Je l'utilise pour garder une trace des sites/répertoires lorsque je travaille sur plusieurs domaines. Il est possible d'initialiser le tableau lors de sa déclaration plutôt que d'ajouter chaque entrée séparément:

$domain = $env:userdnsdomain
$siteUrls = @{ 'TEST' = 'http://test/SystemCentre' 
               'LIVE' = 'http://live/SystemCentre' }

$url = $siteUrls[$domain]
1
David Clarke
PS C:\> $a = @{}                                                      
PS C:\> $a.gettype()                                                  

IsPublic IsSerial Name                                     BaseType            

-------- -------- ----                                     --------            

True     True     Hashtable                                System.Object       

Une table de hachage est donc un tableau associatif. Ohhh.

Ou:

PS C:\> $a = [Collections.Hashtable]::new()
1
js2010