3.3 KiB
3.3 KiB
id, title, challengeType, forumTopicId, localeTitle
id | title | challengeType | forumTopicId | localeTitle |
---|---|---|---|---|
587d7dba367417b2b2512ba9 | Positive and Negative Lookahead | 1 | 301360 | 正向先行断言和负向先行断言 |
Description
先行断言
是告诉 JavaScript 在字符串中向前查找的匹配模式。当想要在同一个字符串上搜寻多个匹配模式时,这可能非常有用。
有两种先行断言
:正向先行断言
和负向先行断言
。
正向先行断言
会查看并确保搜索匹配模式中的元素存在,但实际上并不匹配。正向先行断言的用法是(?=...)
,其中...
就是需要存在但不会被匹配的部分。
另一方面,负向先行断言
会查看并确保搜索匹配模式中的元素不存在。负向先行断言的用法是(?!...)
,其中...
是希望不存在的匹配模式。如果负向先行断言部分不存在,将返回匹配模式的其余部分。
尽管先行断言有点儿令人困惑,但是这些示例会有所帮助。
let quit = "qu";
let noquit = "qt";
let quRegex= /q(?=u)/;
let qRegex = /q(?!u)/;
quit.match(quRegex); // Returns ["q"]
noquit.match(qRegex); // Returns ["q"]
先行断言
的更实际用途是检查一个字符串中的两个或更多匹配模式。这里有一个简单的密码检查器,密码规则是 3 到 6 个字符且至少包含一个数字:
let password = "abc123";
let checkPass = /(?=\w{3,6})(?=\D*\d)/;
checkPass.test(password); // Returns true
Instructions
pwRegex
中使用先行断言
以匹配大于5个字符且有两个连续数字的密码,并且不能以数字开头。
Tests
tests:
- text: 你的正则表达式应该使用两个正向<code>先行断言</code>。
testString: assert(pwRegex.source.match(/\(\?=.*?\)\(\?=.*?\)/) !== null);
- text: "你的正则表达式不应该匹配<code>'astronaut'</code>。"
testString: assert(!pwRegex.test("astronaut"));
- text: "你的正则表达式不应该匹配<code>'airplanes'</code>。"
testString: assert(!pwRegex.test("airplanes"));
- text: 正则不应该匹配 <code>"banan1"</code>
testString: assert(!pwRegex.test("banan1"));
- text: "你的正则表达式应该匹配<code>'bana12'</code>。"
testString: assert(pwRegex.test("bana12"));
- text: "你的正则表达式应该匹配<code>'abc123'</code>。"
testString: assert(pwRegex.test("abc123"));
- text: "你的正则表达式不应该匹配<code>'123'</code>。"
testString: assert(!pwRegex.test("123"));
- text: "你的正则表达式不应该匹配<code>'1234'</code>。"
testString: assert(!pwRegex.test("1234"));
- text: 正则不应该匹配 <code>"8pass99"</code>
testString: assert(!pwRegex.test("8pass99"));
- text: 正则不应该匹配 <code>"12abcde"</code>
testString: assert(!pwRegex.test("12abcde"));
Challenge Seed
let sampleWord = "astronaut";
let pwRegex = /change/; // Change this line
let result = pwRegex.test(sampleWord);
Solution
var pwRegex = /^(?=\w{6})(?=\D+\d{2})/;