--- id: 587d7db8367417b2b2512ba2 challengeType: 1 forumTopicId: 301363 title: 限制可能的用户名 --- ## Description
用户名在互联网上随处可见。它们是用户在自己喜欢的网站上的唯一身份。 需要检索数据库中的所有用户名。以下是用户在创建用户名时必须遵守的一些简单规则。 1) 用户名只能是数字字母字符。 2) 用户名中的数字必须在最后,且数字可以有零个或多个。 3) 用户名字母可以是小写字母和大写字母。 4) 用户名长度必须至少为两个字符。两位用户名只能使用字母。
## Instructions
修改正则表达式userCheck以适合上面列出的约束。
## Tests
```yml tests: - text: 你的正则表达式应该匹配JACK。 testString: assert(userCheck.test("JACK")); - text: 你的正则表达式不应该匹配J。 testString: assert(!userCheck.test("J")); - text: 正则表达式应该匹配 Jo。 testString: assert(userCheck.test("Jo")); - text: 你的正则表达式应该匹配Oceans11。 testString: assert(userCheck.test("Oceans11")); - text: 你的正则表达式应该匹配RegexGuru。 testString: assert(userCheck.test("RegexGuru")); - text: 你的正则表达式不应该匹配007。 testString: assert(!userCheck.test("007")); - text: 你的正则表达式不应该匹配9。 testString: assert(!userCheck.test("9")); - text: 正则表达式不应该匹配 A1。 testString: assert(!userCheck.test("A1")); - text: 正则表达式不应该匹配 BadUs3rnam3。 testString: assert(!userCheck.test("BadUs3rnam3")); - text: 正则表达式应该匹配 Z97。 testString: assert(userCheck.test("Z97")); - text: 正则表达式不应该匹配 c57bT3。 testString: assert(!userCheck.test("c57bT3")); ```
## Challenge Seed
```js let username = "JackOfAllTrades"; let userCheck = /change/; // Change this line let result = userCheck.test(username); ```
## Solution
```js let username = "JackOfAllTrades"; const userCheck = /^[a-z]([0-9]{2,}|[a-z]+\d*)$/i; let result = userCheck.test(username); ```