PowerShell - Regular Expressions
What will this PowerShell script output?
$data = 'ID: 1234; Status: Active' if ($data -match 'ID: (?\d+); Status: (? \w+)') { "$($matches['status']) with ID $($matches['id'])" } else { 'No match found' }
