Regular Expressions 101

Community Patterns

There does not seem to be anything here

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 - 6 months ago