Regular Expression Pattern Extractor
See how to use Regular Expression Pattern Extractor
The Regular Expression Pattern Extractor tool will extract information from any block of text that you specify, using a Regular Expression (RegEx).
Example - Extract word Mary
/Mary/
Mary had a little lamb. And everywhere that Mary
went, the lamb was sure to go.
Example - Extract email addresses
/[A-Z0-9._-]+@[A-Z0-9][A-Z0-9.-]{0,61}[A-Z0-9]\.[A-Z.]{2,6}/i
Dave’s email address [email protected], Mike’s email address [email protected],
and Henry’s email address [email protected] .