Regular Expressions 101

Community Patterns

get rid of closing html tags

0

Regular Expression
PCRE (PHP <7.3)

/
\W\W[[:lower:]]+\W
/
g

Description

Example: </thead> RegEx: \W\W[[:lower:]]+\W

Provides full match

Submitted by h0neybadg3r - 7 years ago