From 7cb870115d4ac28c8213b7dcc793cf75b5f18c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 4 Apr 2018 15:13:11 +0200 Subject: [PATCH] Regex special sequences --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4b1228a..525dcc0 100644 --- a/README.md +++ b/README.md @@ -168,9 +168,9 @@ 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.** +* **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.** #### Special Sequences: ```python