userCheck
to fit the constraints listed above.
JACK
testString: 'assert(userCheck.test("JACK"), ''Your regex should match JACK
'');'
- text: Your regex should not match J
testString: 'assert(!userCheck.test("J"), ''Your regex should not match J
'');'
- text: Your regex should match Oceans11
testString: 'assert(userCheck.test("Oceans11"), ''Your regex should match Oceans11
'');'
- text: Your regex should match RegexGuru
testString: 'assert(userCheck.test("RegexGuru"), ''Your regex should match RegexGuru
'');'
- text: Your regex should not match 007
testString: 'assert(!userCheck.test("007"), ''Your regex should not match 007
'');'
- text: Your regex should not match 9
testString: 'assert(!userCheck.test("9"), ''Your regex should not match 9
'');'
```