Learn about regex syntax: character classes, quantifiers and more
Regular expressions (or Regexes) are patterns used to match character combinations in strings. In this challenge, you'll build a Regex engine from scratch by recreating grep, a CLI tool for regex-based searching.
Along the way you'll learn about Regex syntax, character classes, quantifiers and more.