regex
Regular expressions (Rust regex syntax). No require() needed.
regex.match(pattern, str)→ bool — Test if pattern matches stringregex.find(pattern, str)→ string|nil — Find first matchregex.find_all(pattern, str)→ [string] — Find all matchesregex.replace(pattern, str, replacement)→ string — Replace all matches