userCheck
لتتوافق مع القيود المدرجة أعلاه. JACK
العادي مع JACK
testString: 'assert(userCheck.test("JACK"), "Your regex should match JACK
");'
- text: يجب ألا يتطابق تعبيرك العادي مع J
testString: 'assert(!userCheck.test("J"), "Your regex should not match J
");'
- text: يجب أن يتطابق Oceans11
العادي مع Oceans11
testString: 'assert(userCheck.test("Oceans11"), "Your regex should match Oceans11
");'
- text: يجب أن يتطابق RegexGuru
العادي مع RegexGuru
testString: 'assert(userCheck.test("RegexGuru"), "Your regex should match RegexGuru
");'
- text: يجب ألا يتطابق تعبيرك العادي مع 007
testString: 'assert(!userCheck.test("007"), "Your regex should not match 007
");'
- text: يجب ألا يتطابق تعبيرك العادي مع 9
testString: 'assert(!userCheck.test("9"), "Your regex should not match 9
");'
```