Jump to content

Making sure only alphanumeric or certain characters


MasterACE14

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.