From dbfe6e16b63e3429f29c6657291844559f2551e3 Mon Sep 17 00:00:00 2001 From: Tharindu Sathischandra <34299693+tharindusathis@users.noreply.github.com> Date: Mon, 22 Feb 2021 11:20:05 +0530 Subject: [PATCH] Update README.md Ignored the non-capturing group from the result. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb0753a..f38984a 100644 --- a/README.md +++ b/README.md @@ -305,7 +305,7 @@ within parentheses `(...)`. For example, the regular expression `(?:c|g|p)ar` is `(c|g|p)ar` in that it matches the same characters but will not create a capture group.
-"(?:c|g|p)ar" => The car is parked in the garage. +"(?:c|g|p)ar" => The car is parked in the garage.[Test the regular expression](https://regex101.com/r/Rm7Me8/1)