Do A Case Insensitive RexEx Search In Python
April 2021
Use the re.IGNORECASE flag to do case insenstive searches. For example, here's the same search with and without it:
=
=
Output:
None
<re.Match object; span=(0, 4), match='TeSt'>
Notes
-
When doing a
.sub(), theflagskey should be called explicietly like:re.sub('test', 'TeSt', 'source value', flags=re.IGNORECASE)
end of line