PowerShell - Regular Expressions
What will be the output of this PowerShell code?
$text = 'User: JohnDoe, Age: 30' if ($text -match '(?\w+), Age: (? \d+)') { "$($matches['name']) is $($matches['age']) years old" } else { 'No match' }
