From ff13549edce8000801f4038439706bdf93e52e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 26 Dec 2018 14:34:20 +0100 Subject: [PATCH] Regex --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6e4a4b..5f26148 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ import re = re.findall(, text) = re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. = re.search(, text) # Searches for first occurrence of pattern. - = re.match(, text) # Searches only at the beginning of the string. + = re.match(, text) # Searches only at the beginning of the text. = re.finditer(, text) # Searches for all occurrences of pattern. ```