Learn about regex syntax: character classes, quantifiers and more
Regular expressions (Regexes, for short) are patterns used to match character combinations in strings. In this challenge you'll build your own implementation of grep, a CLI tool for searching using Regexes.
Along the way you'll learn about Regex syntax, character classes, quantifiers and more.