Per la compatibilità con le versioni PowerShell più vecchie si potrebbe considerare questo cmdlet:
Function Order-Keys {
param(
[Parameter(Mandatory = $true, ValueFromPipeline = $true)][HashTable]$HashTable,
[Parameter(Mandatory = $false, Position = 1)][ScriptBlock]$Function,
[Switch]$Descending
)
$Keys = $HashTable.Keys | ForEach {$_} #Copy HashTable+KeyCollection
For ($i = 0; $i -lt $Keys.Count - 1; $i++) {
For ($j = $i + 1; $j -lt $Keys.Count; $j++) {
$a = $Keys[$i]
$b = $Keys[$j]
If ($Function -is "ScriptBlock") {
$a = $HashTable[$a] | ForEach $Function
$b = $HashTable[$b] | ForEach $Function
}
If ($Descending) {$Swap = $a -lt $b} Else {$Swap = $a -gt $b}
If ($Swap) {$Keys[$i], $Keys[$j] = $Keys[$j], $Keys[$i]}
}
}
Return $Keys
}
Questo cmdlet restituisce un elenco di chiave ordinato dal definizione di funzione:
selezionare per nome:
$HashTable | Order-Keys | ForEach {Write-Host $_ $HashTable[$_]}
germany berlin
italy rome
spain madrid
switzerland berne
Ordina per valore:
$HashTable | Order-Keys {$_} | ForEach {Write-Host $_ $HashTable[$_]}
germany berlin
switzerland berne
spain madrid
italy rome
Si potrebbe anche prendere in considerazione per le tabelle hash nido:
$HashTable = @{
switzerland = @{Order = 1; Capital = "berne"}
germany = @{Order = 2; Capital = "berlin"}
spain = @{Order = 3; Capital = "madrid"}
italy = @{Order = 4; Capital = "rome"}
}
Ad es Ordina per (hash) ordine propery e restituire la chiave (paese):
$HashTable | Order-Keys {$_.Order} | ForEach {$_}
oppure ordinare (decrescente) da predefinito Capitale
$HashTable | Order-Keys {$_.Capital} -Descending | ForEach {$_}
Grazie per le risposte! Sapevo che PS v3 [ordinato], ma devo usare PS 2.0 – Phil