Regular Expressions 101

Community Patterns

Match Valid CSS Units (px, em, %, etc.)

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^\d+(?:\.\d+)?(?:px|em|rem|%|vw|vh|vmin|vmax|pt|cm|mm|in|ex|ch)?$
/
gm

Description

Submitted by anonymous - a month ago