Regular Expressions - Restrict Possible Usernames False Pass Condition

Tell us what’s happening:
I was able to pass with

let userCheck = /^ [^[^\d][a-z]+\d*$|^[^[^\d]\d\d+$/i;

But shouldn’t have been able to due to Rule # 1. Usernames can only use alpha-numeric characters.

I would suggest adding a test case like let username = “%z1”; to prevent this.

Your code so far

let username = "JackOfAllTrades";
let userCheck = /change/; // Change this line
let result = userCheck.test(username);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Regular Expressions - Restrict Possible Usernames

Link to the challenge:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.