PowerShell - Control Flow
What will be the output of this PowerShell code?
switch -Regex ('dog', 'cat', 'caterpillar') {
'^cat' { 'Starts with cat' }
'dog' { 'Exact dog' }
default { 'No match' }
}