地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2018-09-17から1日間の記事一覧

groovyの正規表現についてメモ

//正規表現文字列。 regex = /(ABC)/ // ~はPatternオブジェクトを作成する pattern = ~regex assert pattern instanceof java.util.regex.Pattern //=~はMatcherオブジェクトを作成する matcher = "ABCDEFG" =~ regex assert matcher instanceof java.util.…