Extract specific patterns from text using custom or predefined regular expressions
Global match
: Find all matches instead of just the firstCase insensitive
: Ignore case differences in matchingMultiline
: Treat text as multiple linesDot matches all
: Make . match newlines as wellOriginal Text | Regex Pattern | Extracted Matches |
---|---|---|
Contact us at [email protected] or [email protected]. Our website is https://example.com | \b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b | [email protected] [email protected] |