基本的な正規表現の書き方
1.複数文字
^文字列
^tokyo
文字列$
tokyo$
?!文字列
?!yamada
文字列1|文字列2
tokyo|oosaka
2.パターン一致
0文字以上の任意の文字列
.*
1文字以上の任意の文字列
.+
文字列{数字}
test{2}
文字列{数字,}
test{2,}
文字列+?
test+?
Coding Changes the World
1.複数文字
^文字列
^tokyo
文字列$
tokyo$
?!文字列
?!yamada
文字列1|文字列2
tokyo|oosaka
2.パターン一致
0文字以上の任意の文字列
.*
1文字以上の任意の文字列
.+
文字列{数字}
test{2}
文字列{数字,}
test{2,}
文字列+?
test+?