SyntaxFix
Write A Post
Hire A Developer
Questions
This is how you'd do it with re:
import re p = re.compile('^hello$', re.I) p.match('Hello') p.match('hello') p.match('HELLO')