MasterACE14 Posted June 3, 2012 Share Posted June 3, 2012 I'm trying to validate a string so it can only be alphanumeric characters 0-9, a-z, A-Z and the following characters " ", "-", "!", "(", ")", "/", ".", "," Looking at the php manual and a few different tutorial sites I'm not having much luck, I can get the alphanumeric part, but not those other characters. I currently have... $string = "FN#*F#)@)"; // should be invalid if(!preg_match('/^[a-zA-Z0-9]+$/i', $string)) echo "Invalid Input"; Not sure where to go from here. Any help is very much appreciated. Kind Regards, Ace Quote Link to comment Share on other sites More sharing options...
smoseley Posted June 3, 2012 Share Posted June 3, 2012 $string = "FN#*F#)@)"; // should be invalid if(!preg_match('/^[a-zA-Z0-9 \-\!\/\(\)\,\.]+$/i', $string)) echo "Invalid Input"; Quote Link to comment Share on other sites More sharing options...
MasterACE14 Posted June 4, 2012 Author Share Posted June 4, 2012 cheers mate, appreciate it. 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.