使用正規表示式引數 switch 語句
-Regex
引數允許 switch 語句根據條件執行正規表示式匹配。
例:
switch -Regex ('Condition')
{
'Con\D+ion' {'One or more non-digits'}
'Conditio*$' {'Zero or more "o"'}
'C.ndition' {'Any single char.'}
'^C\w+ition$' {'Anchors and one or more word chars.'}
'Test' {'No match'}
}
輸出:
One or more non-digits
Any single char.
Anchors and one or more word chars.