Get startedGet started for free

Using the Matcher

Let's try spaCy's rule-based Matcher. You'll be using the example from the previous exercise and write a pattern that can match the phrase "iPhone X" in the text. The nlp object and a processed doc are already available.

This exercise is part of the course

Advanced NLP with spaCy

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Import the Matcher
from spacy.____ import ____

# Initialize the Matcher with the shared vocabulary
matcher = ____(____.____)
Edit and Run Code