I am looking for a function that would be the alphabetic equivalent of is_numeric. It would return true if there are only letters in the string and false otherwise. Does a bui
I would have used preg_match. But that's because I'd never heard of ctype_alpha()
.
if(!preg_match("/[^a-zA-Z]/", $teststring)) {
echo "There are only letters in this string";
} else {
echo "There are non-letters in this string";
}
!is_numeric((float)$variableToBeChecked);
also
preg_match('#^[a-z]+$#i',$variableToBeChecked); // for one or more letter character
If you're strictly looking for the opposite of is_numeric()
, wouldn't !is_numeric()
do the job for you? Or am I misunderstanding the question?
You want ctype_alpha()