Concept Flow - Match method and MatchData
Call str.match(pattern)
Search for pattern in str
Return MatchData
Use MatchData to access captures or positions
The match method searches a string for a pattern. If found, it returns a MatchData object with details; if not, it returns nil.