admin管理员组文章数量:1343311
Lets consider i have a string & want to extract unmon keywords for SEO. $text = "This is some text. This is some text. Vending Machines are great.";
& Will define a array of mon words to ignore keywords in extracted list like $monWords = ['i','a','about','an','and','are','as','at','be','by','','de','en','for','from','how','in','is','it','la','of','on','or','that','the','this','to','was','what','when','where','who','will','with','und','the','www'];
Expected output: Result=[some,text,machines,vending]
Would really appreciate if Could any one help us to write generic logic or procedure for the extracting keywords from string?
Lets consider i have a string & want to extract unmon keywords for SEO. $text = "This is some text. This is some text. Vending Machines are great.";
& Will define a array of mon words to ignore keywords in extracted list like $monWords = ['i','a','about','an','and','are','as','at','be','by','','de','en','for','from','how','in','is','it','la','of','on','or','that','the','this','to','was','what','when','where','who','will','with','und','the','www'];
Expected output: Result=[some,text,machines,vending]
Would really appreciate if Could any one help us to write generic logic or procedure for the extracting keywords from string?
Share Improve this question asked Oct 30, 2015 at 7:40 Niks JainNiks Jain 1,6475 gold badges27 silver badges53 bronze badges 1-
1
remove punctuation marks (
.replace()
), split the string (.split()
), filter the array for words not found in the$monWords
array (.filter()
,.indexOf()
) – Andreas Commented Oct 30, 2015 at 7:46
4 Answers
Reset to default 5This can help ( it supports multi languages):
https://github./michaeldelorenzo/keyword-extractor
var sentence = "President Obama woke up Monday facing a Congressional defeat that many in both parties believed could hobble his presidency."
// Extract the keywords
var extraction_result = keyword_extractor.extract(sentence,{
language:"english",
remove_digits: true,
return_changed_case:true,
remove_duplicates: false
});
Some like this
var $monWords = ['i','a','about','an','and','are','as','at','be','by','','de','en','for','from','how','in','is','it','la','of','on','or','that','the','this','to','was','what','when','where','who','will','with','und','the','www'];
var $text = "This is some text. This is some text. Vending Machines are great.";
// Convert to lowercase
$text = $text.toLowerCase();
// replace unnesessary chars. leave only chars, numbers and space
$text = $text.replace(/[^\w\d ]/g, '');
var result = $text.split(' ');
// remove $monWords
result = result.filter(function (word) {
return $monWords.indexOf(word) === -1;
});
// Unique words
result = result.unique();
console.log(result);
var string = "This is some text. This is some text. Vending Machines are great.";
var substrings = ['your','words', 'here'],
var results = array();
for (var i = substrings.length - 1; i >= 0; --i) {
if (string.indexOf(substrings[i]) != -1) {
// str contains substrings[i]
array.push(substrings[i]);
}
}
var arrayLength = monWords.length;
var words = []; //new array to say the words
for (var i = 0; i < arrayLength; i++) {
if ($text.indexOf(monWords[i]) > -1){
words.push(monWords[i]);
}
}
本文标签: arraysExtract Keywords from String JavascriptStack Overflow
版权声明:本文标题:arrays - Extract Keywords from String: Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743722838a2527865.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论