Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created June 28, 2010 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjack/7fbff0775cf072e2efac to your computer and use it in GitHub Desktop.
Save tomjack/7fbff0775cf072e2efac to your computer and use it in GitHub Desktop.
(def stop-words #{"a" "an" "the"})
(defn remove-stop-words [s]
(remove stop-words (re-seq #"[^\s]+" s)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment