From 0356005d112f0f7e6388cbbd90f781f7992b301c Mon Sep 17 00:00:00 2001 From: dandanio Date: Tue, 25 Jul 2017 20:28:17 -0400 Subject: [PATCH] The [a-z]* does not match *The*, just *he* (#8) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 382451f..24bfa91 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