From 4f8e0f0653fed52af86a75458f30bcb1c5b98e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 18 Nov 2018 23:51:48 +0100 Subject: [PATCH] Tabulate --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index a39b4a6..c81493e 100644 --- a/README.md +++ b/README.md @@ -192,11 +192,8 @@ 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 whole match, or '.group(1)' to get the part in first bracket.** - * **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.** - * **Use ? to make operators non-greedy.**