Post
Topic
Board Development & Technical Discussion
Re: RegEx to match transaction id?
by
jeffg
on 08/04/2014, 12:47:06 UTC
Hello all

Please help me make a regular expression for PHP

[a-zA-Z0-9] and 65 characters?

'/^[a-zA-Z0-9]{65}$/' - true ?)))

Should be a-f and only 64 chars (32bytes):

Code:
[a-fA-F0-9]{64}