From 755ae62bff06891ad2f0764f45e9cb852926ad96 Mon Sep 17 00:00:00 2001 From: EdgarAllanzp Date: Tue, 30 Jan 2018 12:30:10 +0800 Subject: [PATCH] fix example error at section Greedy vs lazy matching. --- 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)