Community Patterns

Community Library Entry

1

Regular Expression
Created·2023-11-20 09:23
Flavor·PCRE2 (PHP)

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

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