Regular Expressions 101

Community Patterns

XML/HTML Tag selector

1

Regular Expression
PCRE2 (PHP >=7.3)

/
<draw(?:\s*|)(?:\s([^<>]*)|)(?:\/>|>([^<>]*)<\/draw>)
/
gm

Description

Pros:

  • Attribute-aware (but not complete parse)
  • Content-aware (text only)

Cons:

  • Might poor performance (unnecessary matches if you work on a ssr thing)
  • Not complete XML parse
Submitted by stdpi - 6 months ago