From 4db748c692a0e420a1f981804abe6b9b756030a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 4 Apr 2018 14:58:28 +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 1b8d55b..5a39e10 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches '\s' == [ \t\n\r\f\v] # Whitespace '\w' == [a-zA-Z0-9_] # Alphanumeric ``` -**Use capital letter for negation** +**Use capital letter for negation.** ### Format