/** Eliminates all the English stopwords from the string */
 public void removeEngStopwords() {
   stopEng.removeStopwords(tokens);
 }
 /** Eliminates all the stopwords from the string */
 public void removeStopwords() {
   stop.removeStopwords(tokens);
 }