From 9551e407d420da86d9b07cb4ac927a6cd1c9cdf5 Mon Sep 17 00:00:00 2001 From: cricri-pingouin <64480118+cricri-pingouin@users.noreply.github.com> Date: Tue, 19 May 2020 11:11:25 +0100 Subject: [PATCH] Update README.md Re-use 2.3.1 example in 2.3.2 to see difference. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 4ac6e0f..99945ef 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,12 @@ example, the regular expression `c.+t` means: a lowercase `c`, followed by at least one character, followed by a lowercase `t`. It needs to be clarified that`t` is the last `t` in the sentence. +
+"\s+cat\s+" => The fat cat sat on the concatenation.
+
+ +[Test the regular expression](https://regex101.com/r/gGrwuz/1) +
 "c.+t" => The fat cat sat on the mat.