Liking cljdoc? Tell your friends :D

std.text.index.stemmer


*excluded-words*clj


*max-word-length*clj


*min-word-length*clj


default-stemmerclj


excluded-word?clj

(excluded-word? word)

checks if word is excluded from indexing

(excluded-word? "and") => true

checks if word is excluded from indexing

(excluded-word? "and")
=> true
raw docstring

expand-hyphenated-wordsclj

(expand-hyphenated-words word-seq)

split hyphenated words

(expand-hyphenated-words ["hello-world"]) => ["hello-world" "hello" "world"]

split hyphenated words

(expand-hyphenated-words ["hello-world"])
=> ["hello-world" "hello" "world"]
raw docstring

remove-excluded-wordsclj

(remove-excluded-words word-seq)

remove excluded words

remove excluded words
raw docstring

stemsclj

(stems phrase)
(stems phrase stemmer-func)

classifies text into word stems

(stems "The lazy brown fox jumped over") => ["lazi" "brown" "fox" "jump" "over"]

classifies text into word stems

(stems "The lazy brown fox jumped over")
=> ["lazi" "brown" "fox" "jump" "over"]
raw docstring

tokeniseclj

(tokenise txt)

makes tokens from text

(tokenise "The lazy brown fox jumped over") => ["lazy" "brown" "fox" "jumped" "over"]

makes tokens from text

(tokenise "The lazy brown fox jumped over")
=> ["lazy" "brown" "fox" "jumped" "over"]
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close