vote up 0 vote down star

Hi, I'm using this simple regular expression to validate a hex string ^[A-Fa-f0-9]{16}$ as you can see I'm using a quantifier to validate that the string is 16 chars long, I was wondering if I can use another quantifier in the same regex to validate the string length to be either 16 or 18 (not 17).

Thanks in advance :)

flag

4 Answers

vote up 15 vote down check

I believe

^([A-Fa-f0-9]{2}){8,9}$

will work.

This is nice because it generalizes to any even-length string.

EDIT: Small update based on a good comment.

link|flag
i agree that deserves upvotes – Johannes Schaub - litb Nov 13 '08 at 17:56
Good thinking! +1 – Tomalak Nov 13 '08 at 17:59
I agree, better: +1 (if Alonso wants to put the 'tick' solution mark on this answer rather than mine, I would understand ;) ) – VonC Nov 13 '08 at 18:02
The inner expression could be optimized to ([A-Fa-f0-9]{2}), maybe even to ([[:xdigit:]]{2}) or (\p{XDigit}{2}). Depending on your regex flavor, pre-constructed character classes like the POSIX one perform better than hand-made ones. – Tomalak Nov 13 '08 at 18:21
vote up 8 vote down

That's just a 16 character requirement with an optional 2 character afterwards:

^[A-Fa-f0-9]{16}([A-Fa-f0-9]{2})?$

The parentheses may not be required - I'm not enough of a regex guru to know offhand, I'm afraid. If anyone wants to edit it, do feel free...

link|flag
From a performance point of view, this is a lot better. Much less backtracking on a non-match. +1 – Tomalak Nov 13 '08 at 17:58
Parentheses are required here. If you omit them, the ? makes the {2} lazy, which has no effect here. – Jan Goyvaerts Nov 14 '08 at 10:05
vote up 3 vote down
^(?:[A-Fa-f0-9]{16}|[A-Fa-f0-9]{18})$
link|flag
vote up 0 vote down

I'd probably go with:

/^[a-f0-9]{16}([a-f0-9]{2})?$/i

myself - I think it's more readable to set the regex as case insensitive and only list the character range once. That said, just bout all of these answers work.

link|flag
Like so many things, it's a tradeoff... /[a-f]/i may be more readable (or may not, depending on the reader), but /[A-Fa-f]/ will run faster. Probably not enough of a performance difference to be relevant in this case, though. – Dave Sherohman Nov 14 '08 at 18:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.