2.4 KiB
2.4 KiB
id, challengeType, forumTopicId, title
id | challengeType | forumTopicId | title |
---|---|---|---|
587d7db8367417b2b2512ba2 | 1 | 301363 | 限制可能的用户名 |
Description
Instructions
userCheck
以适合上面列出的约束。
Tests
tests:
- text: 你的正则表达式应该匹配<code>JACK</code>。
testString: assert(userCheck.test("JACK"));
- text: 你的正则表达式不应该匹配<code>J</code>。
testString: assert(!userCheck.test("J"));
- text: 正则表达式应该匹配 <code>Jo</code>。
testString: assert(userCheck.test("Jo"));
- text: 你的正则表达式应该匹配<code>Oceans11</code>。
testString: assert(userCheck.test("Oceans11"));
- text: 你的正则表达式应该匹配<code>RegexGuru</code>。
testString: assert(userCheck.test("RegexGuru"));
- text: 你的正则表达式不应该匹配<code>007</code>。
testString: assert(!userCheck.test("007"));
- text: 你的正则表达式不应该匹配<code>9</code>。
testString: assert(!userCheck.test("9"));
- text: 正则表达式不应该匹配 <code>A1</code>。
testString: assert(!userCheck.test("A1"));
- text: 正则表达式不应该匹配 <code>BadUs3rnam3</code>。
testString: assert(!userCheck.test("BadUs3rnam3"));
- text: 正则表达式应该匹配 <code>Z97</code>。
testString: assert(userCheck.test("Z97"));
- text: 正则表达式不应该匹配 <code>c57bT3</code>。
testString: assert(!userCheck.test("c57bT3"));
Challenge Seed
let username = "JackOfAllTrades";
let userCheck = /change/; // Change this line
let result = userCheck.test(username);
Solution
let username = "JackOfAllTrades";
const userCheck = /^[a-z]([0-9]{2,}|[a-z]+\d*)$/i;
let result = userCheck.test(username);