From 33f3832039a2deeba8a6c62caf7f85b9697bb57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 5 Apr 2018 15:17:04 +0200 Subject: [PATCH] Regex --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f52da5b..362b03a 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches ``` **'Search' and 'match' functions return a 'Match' object. Use '.group()' method on it to get the match.** -**Parameter 'flags=re.IGNORECASE' can be used with all functions.** +**Parameter 'flags=re.IGNORECASE' can be used with all functions.** **Parameter 'flags=re.DOTALL' makes dot also accept newline.** **Use '\\\\1' or r'\1' for backreference.**