Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードを読みやすくしようとしていますが、できるだけ意味のあるものにしようとしています。文字列といくつかの正規表現パターンをテストしたいと思います。
( re-find #"(?i)(^select .* from .*)|(^delete from me)" c))
そして、これを2つの別々のパターンに分割したいのですが、1つのテストを使用できますか? 一連のパターンと 1 つの文字列をテストするものはありますか?
ありがとう!
(def patterns [#"(?i)^select .* from .*" #"(?i)^delete from me"]) (when (some #(re-find % "your test string") patterns) ...)
clojure.core/some