Regular Expressions 101

Community Patterns

Remove all html from string

0

Regular Expression
PCRE (PHP <7.3)

/
(&[a-z]*;)*(?: )*<[^>]*>
/
gm

Description

Remove all tags and special character such as &nbsp;

Submitted by enrico mosca - a year ago