Answers for "php string doesnt contain number"

PHP
0

php check if string contains number

if (preg_match('/[A-Za-z]/', $myString) && preg_match('/[0-9]/', $myString))
{
    echo 'Contains at least one letter and one number';
}
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language