PowerShell - String Operations
What will be the output of this PowerShell code?
$log = 'Status: 500 Internal Server Error'
if ($log -match '\d{3}') { $Matches[0] } else { 'No digits found' }