From 106a07bed0c0328ce4377b031ccae68f33f7b9dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 4 Apr 2018 15:00:09 +0200 Subject: [PATCH] Regex special sequences --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a39e10..471989c 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches **Parameter 'flags=re.IGNORECASE' can be used with all functions.** **Use r'\1' for backreference.** -#### Special Sequences +#### Special Sequences: ```python '\d' == [0-9] # Digit '\s' == [ \t\n\r\f\v] # Whitespace