2.5 KiB
2.5 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7db9367417b2b2512ba7 | Specify Exact Number of Matches | 1 | 指定完全匹配数 |
Description
quantity specifiers
的较低和较高数量的模式。有时您只需要特定数量的匹配。要指定一定数量的模式,只需在大括号之间放置一个数字。例如,要仅将单词"hah"
与字母a
匹配3
次,您的正则表达式将为/ha{3}h/
。 让A4 =“haaaah”;
让A3 =“haaah”;
设A100 =“h”+“a”.repeat(100)+“h”;
let multipleHA = / ha {3} h /;
multipleHA.test(A4); //返回false
multipleHA.test(A3); //返回true
multipleHA.test(A100); //返回false
Instructions
m
时才更改正则表达式timRegex
以匹配单词"Timber"
。 Tests
tests:
- text: 你的正则表达式应该使用大括号。
testString: 'assert(timRegex.source.match(/{.*?}/).length > 0, "Your regex should use curly brackets.");'
- text: 你的正则表达式不应该与<code>"Timber"</code>匹配
testString: 'assert(!timRegex.test("Timber"), "Your regex should not match <code>"Timber"</code>");'
- text: 你的正则表达式不应该匹配<code>"Timmber"</code>
testString: 'assert(!timRegex.test("Timmber"), "Your regex should not match <code>"Timmber"</code>");'
- text: 你的正则表达式不应该匹配<code>"Timmmber"</code>
testString: 'assert(!timRegex.test("Timmmber"), "Your regex should not match <code>"Timmmber"</code>");'
- text: 你的正则表达式应该匹配<code>"Timmmmber"</code>
testString: 'assert(timRegex.test("Timmmmber"), "Your regex should match <code>"Timmmmber"</code>");'
- text: 你的正则表达式不应该与30 <code>m</code>的<code>"Timber"</code>相匹配。
testString: 'assert(!timRegex.test("Ti" + "m".repeat(30) + "ber"), "Your regex should not match <code>"Timber"</code> with 30 <code>m</code>\"s in it.");'
Challenge Seed
let timStr = "Timmmmber";
let timRegex = /change/; // Change this line
let result = timRegex.test(timStr);
Solution
// solution required