/ Published in: Clojure
Function strips HTML tags from string.
Expand |
Embed | Plain Text
(import '[org.jsoup Jsoup]) (defn strip-html-tags "Function strips HTML tags from string." [s] (.text (Jsoup/parse s)))
You need to login to post a comment.
