Regular Expressions 101

Community Patterns

Email Parse Email with Colon (Email: )

0

Regular Expression
Python

r"
Email: (?P<email>.*)
"
gm

Description

For getting the value after “Email: “ in a block of text

Submitted by QuickRegEx - 3 years ago