Rule-based Matcher Explorer
Test spaCy's rule-based Matcher
by creating token patterns interactively and running them over your text. Each token can set multiple
attributes like text value, part-of-speech tag or boolean
flags. The token-based view lets you explore how spaCy
processes your text – and why your pattern matches, or why it
doesn't. For more details on rule-based matching, see the documentation.
pattern = [{'POS': 'ADJ', 'OP': '?'},
{'LEMMA': 'match', 'POS': 'NOUN'},
{'LEMMA': 'be'}]