From 5f3ea598f00a70657b6949fe7828e24a0d970e36 Mon Sep 17 00:00:00 2001 From: Monster_01 <89054489+Charan-happy@users.noreply.github.com> Date: Thu, 23 Jun 2022 07:27:26 +0530 Subject: [PATCH] Update 12_day_regular_expressions.md typo at line 376. instead of "to" "ot" is written --- 12_Day_Regular_expressions/12_day_regular_expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12_Day_Regular_expressions/12_day_regular_expressions.md b/12_Day_Regular_expressions/12_day_regular_expressions.md index ef83882..65ba340 100644 --- a/12_Day_Regular_expressions/12_day_regular_expressions.md +++ b/12_Day_Regular_expressions/12_day_regular_expressions.md @@ -373,7 +373,7 @@ console.log(matches) // ["e-mail", "email", "Email", "E-mail"] ### Quantifier in RegExp -We can specify the length of the substring we look for in a text, using a curly bracket. Let us see, how ot use RegExp quantifiers. Imagine, we are interested in substring that their length are 4 characters +We can specify the length of the substring we look for in a text, using a curly bracket. Let us see, how to use RegExp quantifiers. Imagine, we are interested in substring that their length are 4 characters ```js const txt = 'This regular expression example was made in December 6, 2019.'