PowerShell - Regular Expressions
Identify the error in this PowerShell regex usage:
$string = 'hello123';
if ($string -match '^hello\d+$') { 'Match' } else { 'No Match' }
