Regular Expressions 101

Community Patterns

Match inside content of HTML tags

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 - 20 days ago