Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to simplify the following statement.

if($_=~/^([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F])/)

Is there an alternate way I can write the above statement without repeating [0-9a-fA-F] n times ?

share|improve this question

3 Answers

up vote 5 down vote accepted

Try this

if($_=~/^([0-9a-fA-F]{5})/)
share|improve this answer

You can use Quantifiers

{n} Match exactly n times

if (/^([0-9a-fA-F]{5})/)

Similarly, you can use a POSIX character class

xdigit Any hexadecimal digit ("[0-9a-fA-F]").

if (/^([[:xdigit:]]{5})/)
share|improve this answer
3  
+1 for [:xdigit:], which conveys the intent of the code more clearly. – Sean Apr 18 '11 at 19:03

or even

if( /^([0-9a-fA-F]{5})/ )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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