Для split-во-первых, наилучшим подходом было бы: (defn split-first [re s] (clojure.string/split s re 2)) (split-first #\. abc.def.ghi) => [abc def.ghi] ...
確定! 回上一頁