From 6d5c34d90678b168af9b0b33fcc6ca2415974fbe Mon Sep 17 00:00:00 2001 From: Edgarli Date: Tue, 30 Jan 2018 14:03:26 +0800 Subject: [PATCH] fix example error at section Greedy vs lazy matching. (#109) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f89d1cc..d49c725 100644 --- a/README.md +++ b/README.md @@ -546,7 +546,7 @@ By default regex will do greedy matching , means it will match as long as possible. we can use `?` to match in lazy way means as short as possible
-"/(.*at)/" => The fat cat sat on the mat. 
+"/(.*at)/" => The fat cat sat on the mat. [Test the regular expression](https://regex101.com/r/AyAdgJ/1)