Minor clarification (#34250)

(?=\D*\d) is looking for a non-number to precede a number. If '12Three' was passed in to test, it would not match though it matches the stated criteria of 5 character minimum length and two consecutive numbers.
This commit is contained in:
Greg Brewton 2018-11-09 22:03:01 -07:00 committed by Aman Mittal
parent bcd9f41e2d
commit 7a1256df79

View File

@ -18,7 +18,7 @@ A more practical use of <code>lookaheads</code> is to check two or more patterns
## Instructions
<section id='instructions'>
Use <code>lookaheads</code> in the <code>pwRegex</code> to match passwords that are greater than 5 characters long and have two consecutive digits.
Use <code>lookaheads</code> in the <code>pwRegex</code> to match passwords that are greater than 5 characters long, do not begin with numbers, and have two consecutive digits.
</section>
## Tests