I did a SuperSearch, and didn't turn up anything directly related to my question, so...
I've been using this code and regex as the heart of an is_MD5 subroutine:
if ($hash =~ /[0-9a-f]{32}/i) { return(1); }
Now I'd like to generalize it for other hex hash strings, and I think I've negated it correctly like so:
if ($hash =~ /[^0-9a-fA-F]/ ) { return(0); }
The new code continues into some other checks as long as the entire hash string is good hex. It works with all my test cases, but I don't have a large enough set to find any performance difference. Am I doing something stupid that could bite me down the road?
Update: Kyle, thanks, it was couched in other checks, but the more atomic the better, IMO. Davidrw, THANKS! I've seen that but forgot about it.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.