Regular Expressions 101

Community Patterns

Remove XML whitespace

0

Regular Expression
PCRE2 (PHP >=7.3)

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

Description

Removes whitespace around XML elements and trims the content

Submitted by anonymous - 10 months ago