Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<=<tag>)(.*?)(?=<\/tag>)
/
gm

Description

Matches only the text between tags. Change the word tag to any HTML tag you want to match.

Submitted by anonymous - 3 months ago