You may be surprised by the result against matching input to the following #powershell switch statement …
switch ($d) { { “default” } { “d” } { “others” } { “o” } }
#
$d = “Default”
$d = “others”
#
d
o
../to be continued
Certified English Teacher, IT Consultant, Trainer, Coach, Cloud Automation, Web & Mobile Developer
You may be surprised by the result against matching input to the following #powershell switch statement …
switch ($d) { { “default” } { “d” } { “others” } { “o” } }
#
$d = “Default”
$d = “others”
#
d
o
../to be continued