From dbe8593523bbe06ba24d1db56c67309988715c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 18 Nov 2018 23:47:17 +0100 Subject: [PATCH] Tabulate --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a1fdc3..4a9b083 100644 --- a/README.md +++ b/README.md @@ -191,13 +191,13 @@ re.findall(, text) 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.** +* **'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.** +* **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 '\\\\1' or r'\1' for backreference.** -**Use ? to make operators non-greedy.** +* **Use ? to make operators non-greedy.** #### Special Sequences: