Regular Expressions 101

Community Patterns

trailing exclamations

0

Regular Expression
PCRE (PHP <7.3)

/
((\!*[a-zA-Z]+)*)((\!\!)|(\!?))
/
g

Description

Capture word and trailing single ! but capture only word when trailed by !!

Submitted by anonymous - 7 years ago