← Back to challenges

Two Regular Expression Methods

JavaScriptHardregex

Instructions

There are three methods (we exclude compile) that you can use with regular expression literals. Use these two methods to fix the code. One method returns a boolean if there is a match. The other method returns an iterator from a search.

Notes

  • Do not use the same method twice.
  • Do not use String methods that accept regular expresssions as arguments.
javascript
Loading editor…
to run
Walks through the solution with reasoning and edge cases.
Next: Get the File Name