我正在尝试进行简单的True / False测试,以查看字符串是否与我的正则表达式匹配:
import re
sentence = "eee"
if sentence == r"e*":
print(True)
else:
print(False)
我怎样才能让它成为真的?
答案 0 :(得分:0)
尝试以下方法:
import re
sentence = "eee"
matches = sentence.match("e") !== "None"
if matches:
print(True)
else:
print(False)
如果正则表达式不匹配,.match
方法会返回"None"
。变量matches
根据匹配是否返回true
或false
。