From 9497c48d23445cf94cfb9a4c76da74689492b534 Mon Sep 17 00:00:00 2001 From: dandanio Date: Tue, 25 Jul 2017 17:07:22 -0400 Subject: [PATCH] The [a-z]* does not match *The*, just *he* --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 94a3f1b..7c5be84 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ of preceding lowercase character `a`. But if it appears after a character set or character set. For example the regular expression `[a-z]*` means: any number of lowercase letters in a row.
-"[a-z]*" => The car parked in the garage #21.
+"[a-z]*" => The car parked in the garage #21.
 
The `*` symbol can be used with the meta character `.` to match any string of characters `.*`. The `*` symbol can be used with the @@ -433,4 +433,4 @@ line. And beacause of `m` flag now regular expression engine matches pattern at ## License -MIT © [Zeeshan Ahmed](mailto:ziishaned@gmail.com) \ No newline at end of file +MIT © [Zeeshan Ahmed](mailto:ziishaned@gmail.com)