Reputation: 333
I want to validate alphanumeric string in form text box in php. It can contain numbers and special characters like '.' and '-' but the string should not contain only numbers and special characters. Please help with the code.
Upvotes: 20
Views: 55609
Reputation: 4863
Try this
// Validate alphanumeric
if (preg_match('/^[a-zA-Z]+[a-zA-Z0-9._]+$/', $input)) {
// Valid
} else {
// Invalid
}
Upvotes: 24
Reputation: 41
Code:
if(preg_match('/[^a-z_\-0-9]/i', $string))
{
echo "not valid string";
}
Explanation:
The 'i' modifier at the end of the regex is for 'case-insensitive' if you don't put that you will need to add the upper case characters in the code before by doing A-Z
Upvotes: 3
Reputation: 3031
Use ctype_alnum
like below:
if(ctype_alnum($string)){
echo "Yes, It's an alphanumeric string/text";
}
else{
echo "No, It's not an alphanumeric string/text";
}
Read function specification on php.net
Upvotes: 35
Reputation: 2670
I'm sort of new to regex, but I would do it this way:
preg_match('/^[\w.-]+$/', input)
Upvotes: 1