parse string for integers and add to an integer array

i have a script in clojure that can read a string of integers separated by commas from a file..the scrip is succesful and reads the line from the file as astring,all i want is some clojure loop to scan the string for integers and add to an integer array
here is the code

(ns Files.myfile)
(defn hello-world []
  (println "Hello World"))
 (hello-world)
(def s (slurp "integers.txt"))
  (println s)
(s)

##integers.txt contains random integers separated by commas