PowerShell - String Operations
What will be the output of this PowerShell code?
$text = 'My phone number is 123-456-7890'
if ($text -match '\d{3}-\d{3}-\d{4}') {
$matches[0]
} else {
'No match'
}