We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e00229 commit ff13549Copy full SHA for ff13549
README.md
@@ -250,7 +250,7 @@ import re
250
<list> = re.findall(<regex>, text)
251
<list> = re.split(<regex>, text, maxsplit=0) # Use brackets in regex to keep the matches.
252
<Match> = re.search(<regex>, text) # Searches for first occurrence of pattern.
253
-<Match> = re.match(<regex>, text) # Searches only at the beginning of the string.
+<Match> = re.match(<regex>, text) # Searches only at the beginning of the text.
254
<Match_iter> = re.finditer(<regex>, text) # Searches for all occurrences of pattern.
255
```
256
0 commit comments