chore(i8n,curriculum): processed translations (#41504)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
camperbot
2021-03-16 08:41:19 -06:00
committed by GitHub
parent 6f6c4f9081
commit 843eb81632
44 changed files with 393 additions and 369 deletions

View File

@ -8,26 +8,28 @@ dashedName: reuse-patterns-using-capture-groups
# --description--
一些你所搜寻的匹配模式会在字符串中出现多次 手动重复该正则表达式显得不够简洁。 当字符串中出现多个重复子字符串时,有一种更好的方式来编写模式。
一些你所搜寻的匹配模式会在字符串中出现多次 手动重复该正则表达式显得不够简洁。 当字符串中出现多个重复子字符串时,有一种更好的方式来编写模式。
可以使用 <dfn>捕获组</dfn> 搜寻重复的子字符串。 括号 `(``)` 可以用来匹配重复的子字符串。 把需要重复匹配的模式放在括号中即可。
可以使用捕获组(<dfn>capture groups</dfn>搜寻重复的子字符串。 括号 `(``)` 可以用来匹配重复的子字符串。 把需要重复匹配的模式放在括号中即可。
要指定重复字符串将出现的位置,可以使用反斜杠(<code>\\</code>)后接一个数字。 这个数字从 1 开始,随着你使用的每个捕获组的增加而增加。 这里有一个示例,`\1`可以匹配第一个组。
要指定重复字符串将出现的位置,可以使用反斜杠(`\`)后接一个数字。 这个数字从 1 开始,随着你使用的每个捕获组的增加而增加。 这里有一个示例,`\1` 可以匹配第一个组。
下面的示例展示的是匹配被空格隔开的两个相同单词:
```js
let repeatStr = "regex regex";
let repeatRegex = /(\w+)\s\1/;
repeatRegex.test(repeatStr); // Returns true
repeatStr.match(repeatRegex); // Returns ["regex regex", "regex"]
repeatRegex.test(repeatStr);
repeatStr.match(repeatRegex);
```
在字符串上调用 `.match()` 方法将返回一个数组,其中包含它最终匹配到的字符串及其捕获组
`test` 调用将返回 `true``match` 调用将返回 `["regex regex", "regex"]`
在字符串上调用 `.match()` 方法将返回一个数组,其中包含它最终匹配到的字符串及其捕获组。
# --instructions--
Use capture groups in `reRegex` to match a string that consists of only the same number repeated exactly three times separated by single spaces.
`reRegex` 中使用捕获组来匹配一个只由相同的数字重复三次组成的由空格分隔字符串。
# --hints--
@ -37,49 +39,49 @@ Use capture groups in `reRegex` to match a string that consists of only the same
assert(reRegex.source.match(/\\d/));
```
你的正则表达式应该使用两次捕获组。
你的正则表达式应该使用捕获组两次
```js
assert(reRegex.source.match(/\\1|\\2/g).length >= 2);
```
Your regex should match `"42 42 42"`.
你的正则表达式应该匹配字符串 `42 42 42`
```js
assert(reRegex.test('42 42 42'));
```
Your regex should match `"100 100 100"`.
你的正则表达式应该匹配字符串 `100 100 100`
```js
assert(reRegex.test('100 100 100'));
```
Your regex should not match `"42 42 42 42"`.
你的正则表达式不应匹配字符串 `42 42 42 42`
```js
assert.equal('42 42 42 42'.match(reRegex.source), null);
```
Your regex should not match `"42 42"`.
你的正则表达式不应该匹配字符串 `42 42`
```js
assert.equal('42 42'.match(reRegex.source), null);
```
Your regex should not match `"101 102 103"`.
你的正则表达式不应该匹配字符串 `101 102 103`
```js
assert(!reRegex.test('101 102 103'));
```
Your regex should not match `"1 2 3"`.
你的正则表达式不应匹配字符串 `1 2 3`
```js
assert(!reRegex.test('1 2 3'));
```
Your regex should match `"10 10 10"`.
你的正则表达式不应匹配字符串 `10 10 10`
```js
assert(reRegex.test('10 10 10'));