How to split a number in Clojure?

I am looking for a nice method to split a number with n digits in Clojure I have these two methods: (->> (str 942) seq (map str) (map read-string)) => (9 4 2) and... (d...