PowerShell - Regular Expressions
Which of the following is the correct syntax to create a named capture group called 'day' matching two digits in PowerShell regex?
(?pattern) for named captures.(?\d{2}) uses (?\d{2}) , which is correct syntax for two digits named 'day'.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions