Clojureの文字の扱いについてまとめる.
- up: 📝Clojure フォーム
clojure.core
文字列の長さ: count
(count "foo bar zzz")
; => 11
文字数制限: subs
subs が良さそう. そのものズバリな関数は見つからなかった.
(subs "ClojureScript" 0 4)
;; => "Cloj"
ただし制限したい文字数未満だとエラーするので工夫は必要.
(defn trunc
[s n]
(subs s 0 (min (count s) n)))
(defn truncate
[s n]
(apply str (take n s)))
文字列を含むか?: clojure.core/includes?
(includes? s substr)
ワナがある. contains?ではなくincludes?をつかう.
✅リストにvalueを含むかという判定はcontains?ではなくincludes?
clojure.string
(require '[clojure.string :as str])
文字列をスペースで分割する: split
(str/split "foo bar zzz" #" ")
; ["foo" "bar" "zzz"]
なお第2引数の # はリーダマクロでありClojureにおける正規表現である java.util.regex.Patternのインスタンスを示す.
文字列を置換する: replace
(str/replace "The color is red" #"red" "blue")
文字列リストを結合する:
clojure.core/str をつかうのがFirst Choice.
(str "hoge" "huga")
;; => "hogehuga"
clojure.string/join を使えるとbetter.
user=> (clojure.string/join ", " [1 2 3])
;; => "1, 2, 3"
Clojureフォーマット文字列
基本的には (str… )が楽なのだけれどももう少し凝る場合は clojure.core/format がよい.
フォーマット記法は java.util.Formatterと同じ(検索結果はJavaで探したほうが豊富かも).
cl-format
とのこと(-> Clojure rounding to decimal places - Stack Overflow)
cl-format should be used instead of format - format is only a thin wrapper around the java.util.Formatter and because of that it does not handle the Clojure’s BigInt for example.
cl-format - clojure.pprint | ClojureDocs - Community-Powered Clojure Documentation and Examples
Clojureでの正規表現
Javaのjava.util.regex.PatternのWrapper.
Clojureの正規表現のマッチャーはこのインスタンスを駆使する. つまりよくわからなくてとりあえずコピペで先に進みたいときは, 「Java 正規表現」とかでググればおけ.
clojure.core/re-pattern: 正規表現コンパイル
re-pattern で生成(Pattern.compile相当). またはリーダマクロ # をつかう.
clojure.core/re-find: 文字列抽出
re-findは正規表現に一致した文字列を返す. vectorを返し, はじめのものは完全一致, 残りは部分一致の文字列を返す.
Clojure正規表現逆引きHowto
大文字と小文字変換
clojure.stringのupper-case/lower-caseをつかうか, Javaの.toUppercase/.toLowercaseを使う.
String Interop
ref. Clojureフォーム間の変換