Answers for "how to check if a string contains a specific word in php regex"

PHP
93

php check if string contains word

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Posted by: Guest on August-06-2019
2

php regex string contains coringa

fnmatch("*ti*o*", 'Tiago');//false
fnmatch("*ti*o*", 'Tiago', FNM_CASEFOLD);//true
Posted by: Guest on February-15-2022

Code answers related to "how to check if a string contains a specific word in php regex"

Browse Popular Code Answers by Language