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
Add a ment  | 

4 Answers 4

Reset to default 5

This 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