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 Link to comment https://forums.phpfreaks.com/topic/263582-making-sure-only-alphanumeric-or-certain-characters/ 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"; Link to comment https://forums.phpfreaks.com/topic/263582-making-sure-only-alphanumeric-or-certain-characters/#findComment-1350845 Share on other sites More sharing options...
MasterACE14 Posted June 4, 2012 Author Share Posted June 4, 2012 cheers mate, appreciate it. Link to comment https://forums.phpfreaks.com/topic/263582-making-sure-only-alphanumeric-or-certain-characters/#findComment-1350968 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.