Answers for "php check if a string contains a number"

PHP
1

check if includes numbers php

if (preg_match('~[0-9]+~', $string)) {
    echo 'string with numbers';
}
Posted by: Guest on October-26-2020
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

Code answers related to "php check if a string contains a number"

Browse Popular Code Answers by Language