PowerShell - Regular Expressions
What will be the output of this PowerShell code?
$text = 'Date: 2023-07-15' if ($text -match '(?\d{4})-(? \d{2})-(? \d{2})') { "$($matches['year'])/$($matches['month'])/$($matches['day'])" } else { 'No match' }
