Text Pattern Matcher

Find and highlight patterns in text using regular expressions. Supports common patterns like emails, URLs, dates, and custom regex.

Example: \b\w+@\w+\.\w+\b for email addresses
Matched patterns will be highlighted here...
Common Patterns
  • Email: example@domain.com
  • URL: https://www.example.com
  • Date: 2024-02-20, 02/20/2024
  • Phone: +1-234-567-8900
  • Numbers: 123, -45.67, .89
Regex Tips
  • \d - Any digit
  • \w - Word character
  • \s - Whitespace
  • + - One or more
  • * - Zero or more
  • \b - Word boundary
  • [...] - Character class