Regular Expressions 101

Community Patterns

Extract email client inserted reply line "On <DATE>, <SENDER> wrote:"

1

Regular Expression
PCRE (PHP <7.3)

/
^>(?:.|\s>)*<[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}>(?:.|\s)*?:
/
gm

Description

Email clients insert the "sender wrote" line to email replies.

Submitted by Vlad Burca - 9 years ago