From ab6d7ba32a9d779ab1ad4bae32f6fbc47976a9d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 4 Apr 2018 12:55:31 +0200 Subject: [PATCH] Regex update --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fa445fb..5d61683 100644 --- a/README.md +++ b/README.md @@ -168,6 +168,7 @@ re.findall(, text) re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. ``` +**Search and match return a 'Match' object. Use '.group()' method on it to get the match.** **Parameter 'flags=re.IGNORECASE' can be used with all functions.** **Use r'\1' for backreference.**