📅  最后修改于: 2023-12-03 15:40:50.363000             🧑  作者: Mango
猫鼬计数是一个小型的Javascript函数,可以用于计算给定字符串中各单词出现的次数。它可以用于分析文本数据并提取关键信息。
function martenCount(str) {
const words = str.split(' ');
let count = {};
for (let i = 0; i < words.length; i++) {
const word = words[i];
if (count[word]) {
count[word]++;
} else {
count[word] = 1;
}
}
return count;
}
要使用猫鼬计数,只需要调用函数并将待分析的字符串传递给它。该函数将返回一个包含每个单词及其出现次数的对象。
const str = "The quick brown fox jumps over the lazy dog";
const count = martenCount(str);
console.log(count);
返回值将类似于这样的对象:
{
"The": 1,
"quick": 1,
"brown": 1,
"fox": 1,
"jumps": 1,
"over": 1,
"the": 1,
"lazy": 1,
"dog": 1
}