I can't figure out a regex that will grab every word besides MD5 hashes. - I'm using [a-zA-Z0-9]+
to match every word. How do I augment that so that it ignores something I'm thinking is like [a-fA-F0-9]{32}
which would match the MD5 hashes. My question regards Regex.
8e85d8b3be426bc8d370facdb0ad3ad0
string
stringString
63994b32affec18c2a428cdfcb0e2823
stringSTRINGSTING333
34563994b32dddddddaffec18c2a
stringSTRINGSTINGsrting
Thanks for any help. :)