Regular Expressions 101

Community Patterns

Email Parse Phone with Colon (Phone: )

0

Regular Expression
Python

r"
Phone: (?P<phone>.*)
"
gm

Description

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

Submitted by QuickRegEx - 3 years ago