Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HI I am looking for a library that'll remove stop words from text in Javascript, my end goal is to calculate tf-idf and then convert the given document into vector space, and all of this is Javascript. Can anyone point me to a library that'll help me do that.Just a library to remove the stop words would also be great.

share|improve this question
1  
Why do you need a library to remove stop words? Can't you just read them from a plain text file and then, in a loop, use text = text.replace(stopword, "") for each stopword? – nico Apr 12 '11 at 6:54

2 Answers

up vote 3 down vote accepted

I think there are no libraries for such think, you need to download those words http://www.ranks.nl/resources/stopwords.html. And then do replace as written in comments text = text.replace(stopword, "")

share|improve this answer

There's a Javascript Library for removing stopwords here: http://geeklad.com/remove-stop-words-in-javascript

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.