PowerShell - Control Flow
What will be the output of this PowerShell code?
switch -Regex ('apple', 'banana', 'cherry') {
'^a' { 'Starts with a' }
'an' { 'Contains an' }
default { 'No match' }
}