ソースコードは以下になります。
import re
string = "0"
result = re.fullmatch(r'0|1|2', string)
if result:
print("Match!")
else:
print("Not Match")
実行結果は以下になります。
Match!
最後まで読んでいただきありがとうございました。
またお会いしましょう。
Go to list of users who liked
More than 3 years have passed since last update.
ソースコードは以下になります。
import re
string = "0"
result = re.fullmatch(r'0|1|2', string)
if result:
print("Match!")
else:
print("Not Match")
実行結果は以下になります。
Match!
最後まで読んでいただきありがとうございました。
またお会いしましょう。
Register as a new user and use Qiita more conveniently
Go to list of users who liked