dreamwest Posted September 22, 2010 Share Posted September 22, 2010 Im trying to match this string, but i dont wat to match normal words like "hello world 646" $string = "2ab055843241f20044af82ae0d5ace04"; //always over 15 chars - without spaces if ( preg_match('~^[0-9\s]+$~D', $string)) { echo 'yes'; } If i can do it with preg_match that would be great Quote Link to comment Share on other sites More sharing options...
btherl Posted September 22, 2010 Share Posted September 22, 2010 Try this: preg_match('~^[0-9a-f]{32}$~', $string) I'm assuming you want 32 hexadecimal digits Quote Link to comment Share on other sites More sharing options...
dreamwest Posted September 22, 2010 Author Share Posted September 22, 2010 cool! I never would have figured it out Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.