diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/extract-matches.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/extract-matches.english.md index f63f387be5..5b7a7dcba6 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/extract-matches.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/extract-matches.english.md @@ -8,7 +8,8 @@ forumTopicId: 301340 ## Description
So far, you have only been checking if a pattern exists or not within a string. You can also extract the actual matches you found with the .match() method. -To use the .match() method, apply the method on a string and pass in the regex inside the parentheses. Here's an example: +To use the .match() method, apply the method on a string and pass in the regex inside the parentheses. +Here's an example: ```js "Hello, World!".match(/Hello/); @@ -19,6 +20,13 @@ ourStr.match(ourRegex); // Returns ["expressions"] ``` +Note that the `.match` syntax is the "opposite" of the `.test` method you have been using thus far: + +```js +'string'.match(/regex/); +/regex/.test('string'); +``` +
## Instructions