beginners

Getting started with Clojure/ClojureScript? Welcome! Also try: https://ask.clojure.org. Check out resources at https://gist.github.com/yogthos/be323be0361c589570a6da4ccc85f58f.
Gleb Posobin 2020-10-31T02:01:44.483200Z

(= phrase (string/upper-case phrase))?

GGfpc 2020-10-31T17:31:28.486300Z

Does anyone here use hickory for html parsing? I have this subset of the hickory format map

{:type :element, :attrs {:class "clear"}, :tag :br, :content nil}
"\n\n"
{:type :element, :attrs {:class "dataTitle"}, :tag :div, :content ["Born"]}
"\nin Nottingham, England, , The United Kingdom\n"
{:type :element, :attrs {:class "clear"}, :tag :br, :content nil}
"\n\n\n"
{:type :element, :attrs {:class "dataTitle"}, :tag :div, :content ["Website"]}
"\n"
And I'd like to select the text that comes after the element with :content ["Born"] I can select that element with
(->
  (s/find-in-text #"Born")
  (s/select html))
But I don't know how to get the text that comes after