Regular Expressions 101

Community Patterns

Email Parse Name with Colon (Name: )

0

Regular Expression
Python

r"
Name: (?P<name>.*)
"
gm

Description

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

Submitted by QuickRegEx - 3 years ago