基本的な正規表現の書き方

2019年4月18日

1.複数文字
^文字列
^tokyo

文字列$
tokyo$

?!文字列
?!yamada

文字列1|文字列2
tokyo|oosaka

2.パターン一致
0文字以上の任意の文字列
.*

1文字以上の任意の文字列
.+

文字列{数字}
test{2}

文字列{数字,}
test{2,}

文字列+?
test+?

IT

Posted by arkgame