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 ?
|
I want to simplify the following statement.
Is there an alternate way I can write the above statement without repeating [0-9a-fA-F] n times ? |
||||
|
|
|
You can use Quantifiers
Similarly, you can use a POSIX character class
|
|||||
|