From fba7892368fa6d841abef065818255a09d6a3533 Mon Sep 17 00:00:00 2001 From: AndyZ Date: Mon, 14 Aug 2017 22:26:26 +0800 Subject: [PATCH] Something really need to be clarified the `+` is tricky --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1df58ac..3688d85 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ zero or more spaces. ### 2.3.2 The Plus The symbol `+` matches one or more repetitions of the preceding character. For example, the regular expression `c.+t` means: lowercase -letter `c`, followed by at least one character, followed by the lowercase character `t`. +letter `c`, followed by at least one character, followed by the lowercase character `t`. It needs to be clarified that `t` is the last `t` in the sentence.
 "c.+t" => The fat cat sat on the mat.