Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

62 lines
2.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 587d7db9367417b2b2512ba7
title: Specify Exact Number of Matches
challengeType: 1
videoUrl: ''
localeTitle: 指定完全匹配数
---
## Description
<section id="description">您可以使用大括号<code>quantity specifiers</code>的较低和较高数量的模式。有时您只需要特定数量的匹配。要指定一定数量的模式,只需在大括号之间放置一个数字。例如,要仅将单词<code>&quot;hah&quot;</code>与字母<code>a</code>匹配<code>3</code>次,您的正则表达式将为<code>/ha{3}h/</code><blockquote>让A4 =“haaaah”; <br>让A3 =“haaah”; <br>设A100 =“h”+“a”.repeat100+“h”; <br> let multipleHA = / ha {3} h /; <br> multipleHA.testA4; //返回false <br> multipleHA.testA3; //返回true <br> multipleHA.testA100; //返回false </blockquote></section>
## Instructions
<section id="instructions">只有当它有四个字母<code>m</code>时才更改正则表达式<code>timRegex</code>以匹配单词<code>&quot;Timber&quot;</code></section>
## Tests
<section id='tests'>
```yml
tests:
- text: 你的正则表达式应该使用大括号。
testString: assert(timRegex.source.match(/{.*?}/).length > 0);
- text: 你的正则表达式不应该与<code>&quot;Timber&quot;</code>匹配
testString: assert(!timRegex.test("Timber"));
- text: 你的正则表达式不应该匹配<code>&quot;Timmber&quot;</code>
testString: assert(!timRegex.test("Timmber"));
- text: 你的正则表达式不应该匹配<code>&quot;Timmmber&quot;</code>
testString: assert(!timRegex.test("Timmmber"));
- text: 你的正则表达式应该匹配<code>&quot;Timmmmber&quot;</code>
testString: assert(timRegex.test("Timmmmber"));
- text: 你的正则表达式不应该与30 <code>m</code>的<code>&quot;Timber&quot;</code>相匹配。
testString: assert(!timRegex.test("Ti" + "m".repeat(30) + "ber"));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
let timStr = "Timmmmber";
let timRegex = /change/; // Change this line
let result = timRegex.test(timStr);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>