Skip to content

Instantly share code, notes, and snippets.

@HCRitter
Created October 23, 2023 22:09
Show Gist options
  • Save HCRitter/50825627658c0792de63337b2456b6e0 to your computer and use it in GitHub Desktop.
Save HCRitter/50825627658c0792de63337b2456b6e0 to your computer and use it in GitHub Desktop.
GetValueOrDefault.ps1
$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