2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: 587d7db4367417b2b2512b92
|
|
|
|
challengeType: 1
|
2020-08-04 15:14:01 +08:00
|
|
|
forumTopicId: 301340
|
2020-10-01 17:54:21 +02:00
|
|
|
title: 提取匹配项
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-08-04 15:14:01 +08:00
|
|
|
<section id='description'>
|
|
|
|
到目前为止,只是检查了一个匹配模式是否存在于字符串中。还可以使用<code>.match()</code>方法来提取找到的实际匹配项。
|
|
|
|
可以使用字符串来调用<code>.match()</code>方法,并在括号内传入正则表达式。以下是一个示例:
|
|
|
|
|
|
|
|
```js
|
|
|
|
"Hello, World!".match(/Hello/);
|
|
|
|
// Returns ["Hello"]
|
|
|
|
let ourStr = "Regular expressions";
|
|
|
|
let ourRegex = /expressions/;
|
|
|
|
ourStr.match(ourRegex);
|
|
|
|
// Returns ["expressions"]
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Instructions
|
2020-08-04 15:14:01 +08:00
|
|
|
<section id='instructions'>
|
|
|
|
利用<code>.match()</code>方法提取单词<code>coding</code>。
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
tests:
|
2020-08-04 15:14:01 +08:00
|
|
|
- text: <code>结果</code>应该包含单词<code>coding</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(result.join() === "coding");
|
2020-08-04 15:14:01 +08:00
|
|
|
- text: 你的正则表达式<code>codingRegex</code>应该搜寻<code>coding</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(codingRegex.source === "coding");
|
2020-08-04 15:14:01 +08:00
|
|
|
- text: 你应该使用<code>.match()</code>方法。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(code.match(/\.match\(.*\)/));
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
let extractStr = "Extract the word 'coding' from this string.";
|
|
|
|
let codingRegex = /change/; // Change this line
|
|
|
|
let result = extractStr; // Change this line
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
```js
|
2020-08-04 15:14:01 +08:00
|
|
|
let extractStr = "Extract the word 'coding' from this string.";
|
|
|
|
let codingRegex = /coding/; // Change this line
|
|
|
|
let result = extractStr.match(codingRegex); // Change this line
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-08-04 15:14:01 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
</section>
|