Chapter4/4.1_Syntax/switch/swtichのファイル読みとり.ps1

switch -regex -file swtichのファイル読みとり.ps1 {
    "^switch.*" {
        '1行目'
        continue}
    default { "合致しませんでした" }
}