2018-10-10 18:03:03 -04:00
---
id: 587d7daa367417b2b2512b6c
title: Combine an Array into a String Using the join Method
challengeType: 1
2020-08-05 16:38:04 +08:00
forumTopicId: 18221
localeTitle: 使用 join 方法将数组组合成字符串
2018-10-10 18:03:03 -04:00
---
## Description
2020-08-05 16:38:04 +08:00
<section id='description'>
<code>join</code>方法用来把数组中的所有元素放入一个字符串,并通过指定的分隔符参数进行分隔。
举个例子:
```js
var arr = ["Hello", "World"];
var str = arr.join(" ");
// Sets str to "Hello World"
```
</section>
2018-10-10 18:03:03 -04:00
## Instructions
2020-08-05 16:38:04 +08:00
<section id='instructions'>
在函数<code>sentensify</code>内用<code>join</code>方法(及其他方法)用字符串<code>str</code>中的单词造句,这个函数应返回一个字符串。举个例子,"I-like-Star-Wars" 会被转换成 "I like Star Wars"。在此挑战中请勿使用<code>replace</code>方法。
</section>
2018-10-10 18:03:03 -04:00
## Tests
<section id='tests'>
```yml
tests:
2020-08-05 16:38:04 +08:00
- text: 应使用<code>join</code>方法。
2020-02-18 01:40:55 +09:00
testString: assert(code.match(/\.join/g));
2020-08-05 16:38:04 +08:00
- text: 不能使用<code>replace</code>方法。
2020-02-18 01:40:55 +09:00
testString: assert(!code.match(/\.replace/g));
2020-08-05 16:38:04 +08:00
- text: "<code>sentensify('May-the-force-be-with-you')</code>应返回一个字符串"
2020-02-18 01:40:55 +09:00
testString: assert(typeof sentensify("May-the-force-be-with-you") === "string");
2020-08-05 16:38:04 +08:00
- text: "<code>sentensify('May-the-force-be-with-you')</code>应返回<code>'May the force be with you'</code>。"
2020-02-18 01:40:55 +09:00
testString: assert(sentensify("May-the-force-be-with-you") === "May the force be with you");
2020-08-05 16:38:04 +08:00
- text: "<code>sentensify('The.force.is.strong.with.this.one')</code>应返回<code>'The force is strong with this one'</code>。"
2020-02-18 01:40:55 +09:00
testString: assert(sentensify("The.force.is.strong.with.this.one") === "The force is strong with this one");
2020-08-05 16:38:04 +08:00
- text: "<code>sentensify('There,has,been,an,awakening')</code>应返回<code>'There has been an awakening'</code>。"
2020-02-18 01:40:55 +09:00
testString: assert(sentensify("There,has,been,an,awakening") === "There has been an awakening");
2018-10-10 18:03:03 -04:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function sentensify(str) {
// Add your code below this line
// Add your code above this line
}
sentensify("May-the-force-be-with-you");
```
</div>
</section>
## Solution
<section id='solution'>
```js
2020-08-05 16:38:04 +08:00
function sentensify(str) {
// Add your code below this line
return str.split(/\W/).join(' ');
// Add your code above this line
}
2018-10-10 18:03:03 -04:00
```
2020-08-05 16:38:04 +08:00
2018-10-10 18:03:03 -04:00
</section>