ハイフンでつながれた文字列を CamelCase 文字列に変換しようとしています。この投稿に従いました:ハイフンをキャメル ケースに変換する (camelCase)
(defn hyphenated-name-to-camel-case-name [^String method-name]
(clojure.string/replace method-name #"-(\w)"
#(clojure.string/upper-case (first %1))))
(hyphenated-name-to-camel-case-name "do-get-or-post")
==> do-Get-Or-Post
出力文字列にダッシュが表示されるのはなぜですか?