Chapter4/4.1_Syntax/switch/switchのケースセンシティブな判定.ps1

switch -c ("Tyger") {
    "t*"  {'t*'}
    "*s*" {'*s*'}
    default {'no match'}
  }