Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
PCRE2 (PHP >=7.3)

/
<!--(.*?)-->|<(?P<tag>[a-z0-9]+?)[^>]*>.*?<\/(?P=tag)>|<([a-z0-9]+).*?\/>|[\S ]+
/
gis

Description

Tokenize before do other process. We can adapt to use for header tag.

Submitted by Jakk - 3 years ago (Last modified 3 years ago)