I'm new in clojure. I'm learning about splitting string in various ways. I'm taking help from here: https://clojuredocs.org/clojure.string/split There is no example to split string at fixed number of character.
Let a string "hello everyone welcome to here". I want to split this string after every 4th char, so the output (after split) should be ["hell" "o ev" "eryo" "ne w" "elco" "me t" "o he" "re"]. Note that white space is consider a char.
can anyone tell me, how can I do this? Thanks.