计算变量中使用的特定单词?

时间:2017-10-27 11:27:36

标签: javascript iterator

目前正在开发CodeAcademy JS项目。

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';

let overusedWords = ['really', 'very', 'basically'];

问题是“你想让程序的用户知道他们使用这些过度使用的单词的次数。”

苦苦挣扎得到它,一个提示是使用If Else语句但不确定如何准确。

4 个答案:

答案 0 :(得分:2)

您可以使用正则表达式查找过度使用的单词:

> story.match(/\b(really|very|basically)\b/g).length
8

这将查找reallyverybasically的任何内容,并且是一个单词(\b是单词分隔符。)

请注意match可能会返回null,因此您应该在查询长度之前检查一下。

答案 1 :(得分:1)

您必须使用字符串拆分方法。您还需要替换所有逗号。

var array = story.replace(/,/g , "").split(' ');

答案 2 :(得分:1)

请检查以下代码。



let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';

let overusedWords = ['really', 'very', 'basically'];
function getCount(){
for(var i=0; i<overusedWords.length;i++){
alert(overusedWords[i]+" word count: "+story.split(overusedWords[i]).length);
}
}
&#13;
<input type ="button" value="test" onclick="getCount()"/>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';
var overusedWords = ['really', 'very', 'basically'];

var used = {};
story.split(/[\s,]+/).forEach(item => {
    if (overusedWords.indexOf(item) >= 0) {
        if (!used[item]) {
            used[item] = 1
        }
        else {
         used[item] = used[item]+ 1   
        }
    }
});


console.log(JSON.stringify(used));