(split-lines s). 在字符串 s 的 \n 或者 \r\n 处分割开。 user=> (clojure.string/split-lines "hello\nmoto\r\nagain\r\n") ["hello" "moto" "again"] user=> ...
確定! 回上一頁