私がやりたいこと(Clojureで):
たとえば、削除する必要のある単語のベクトルがあります。
(def forbidden-words [":)" "the" "." "," " " ...many more...])
...そして文字列のベクトル:
(def strings ["the movie list" "this.is.a.string" "haha :)" ...many more...])
したがって、禁止されている各単語を各文字列から削除する必要があります。この場合、結果は["movie list""thisisastring""haha"]になります。
これを行う方法 ?