#author("2020-06-29T09:01:48+09:00","default:ryuichi","ryuichi")
* 特定の単語を除外する [#hca99519]


#sh(perl){{

 if ("2020-01-31"=~ /^2020-(?!12).+-31/) {
     print "2020-01-31\n";
 }
 if ("2020-12-01"=~ /^2020-(?!12).+-31/) {
     print "2020-12-31\n";
 }
 if ("2020-05-31"=~ /^2020-(?!12|01).+-31/) {
     print "2020-05-31\n";
 }

}}


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS