Regular Expressions 101

Community Patterns

Hex Input List

1

Regular Expression
PCRE (PHP <7.3)

/
^(?:[0-9A-F]{1,2})(?:,[0-9A-F]{1,2})*$
/
gm

Description

Match one or two digit hex values separated by a comma.

Submitted by anonymous - 9 years ago