Classify travelers as human or bot using the power of regular expressions! You'll need to regex masterfully to direct everyone to their queues and get them to their destinations.
Learning Objectives
Learn the ins and outs of regular expressions including character sets and ranges ([]
), wildcards (.
), quantifiers (*
, +
, ?
), metacharacters (\d
, \w
, \s
), anchors (^
, $
), and capture groups (()
).
Prerequisites
Familiarity with JavaScript string methods and prior experience with regular expressions is helpful for contextualizing the concepts. A play-through of Stringo beforehead is recommended.