Regular Expressions 101

Community Patterns

html comments

0

Regular Expression
PCRE (PHP <7.3)

/
<!--([\w\W]+)-->([\w\W]*)<!--\s?\/\1-->
/
gm

Description

Get content between html comments.

<!-- block -->
My content
<!-- / block -->

<!-- empty --><!-- / empty -->

<!-- inline -->My content<!-- / inline -->
Submitted by anonymous - 6 years ago