简单类型 / 字符串

(require '[clojure.string :as str])

(def str-data "1981|Kim Victoria|engineer")
;; The separator is a regexp, so the bar has to be escaped
(def arr-data (str/split str-data #"\|"))

(let [[year name position] arr-data]
  ;; year is 1981, name is "Kim Victoria", position is "engineer"
  (println "year is" (parse-long year))
  (println "name is" name)
  (println "position is" position))