Created
October 23, 2023 22:09
-
-
Save HCRitter/50825627658c0792de63337b2456b6e0 to your computer and use it in GitHub Desktop.
GetValueOrDefault.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$GetValueOrDefault = { | |
param( | |
[string]$key, | |
$defaultValue | |
) | |
$this.ContainsKey($key) ? $this[$key] : $defaultValue | |
} | |
$etd = @{ | |
TypeName = 'System.Collections.Hashtable' | |
MemberType = 'Scriptmethod' | |
MemberName = 'GetValueOrDefault' | |
Value = $GetValueOrDefault | |
} | |
update-TypeData @etd | |
$employees = @( | |
@{ | |
"Name" = "John Doe" | |
"Age" = 30 | |
"Department" = "HR" | |
}, | |
@{ | |
"Name" = "Jane Smith" | |
"Age" = 25 | |
"Department" = "Sales" | |
"Location" = "New York" | |
}, | |
@{ | |
"Name" = "Bob Johnson" | |
"Age" = 28 | |
"Location" = "Los Angeles" | |
} | |
) | |
# Define default values for missing fields | |
$defaultValues = @{ | |
"Department" = "Unspecified" | |
"Location" = "Not specified" | |
} | |
# Add default values to each employee | |
foreach ($e in $employees) { | |
foreach ($key in $defaultValues.Keys) { | |
$e[$key] = $e.GetValueOrDefault($key, $defaultValues[$key]) | |
} | |
$e | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment