Merge pull request #219 from dbuffel/patch-12

Update 18_regular_expressions.md
This commit is contained in:
Asabeneh 2026-01-15 09:49:01 +02:00 committed by GitHub
commit 26e37272f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,7 +106,7 @@ The string does not string with *I like to teach*, therefore there was no match
```py
# syntax
re.match(substring, string, re.I)
re.search(substring, string, re.I)
# substring is a pattern, string is the text we look for a pattern , re.I is case ignore flag
```