Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
PCRE (PHP <7.3)

/
(<phx:element.[^>]+?[^\/]>)(.*?)(<\/phx:element>)|(<phx:.+?>)|(<\/phx:\w+>)
/
gsi

Description

First matches the children specified opened or self-closed tags and their contents. If not found, matches opening tag. If not found, matches closing tag.

Submitted by anonymous - 6 years ago