PHP strpos - search only full words [duplicate]

2019-03-03 18:14发布

This question already has an answer here:

If I have a string containing the word Company and I wish to search for only full words, such as any, I encounter a problem using strpos(), as follows:

if (strpos($desc, $row['phrase']) !== false )
{
    // action
}

This script will return TRUE because Company contains a substring: any which is unhelpful because the script needs to detect only full words.

The company is working

doesn't contain the word: any

but

Is there any change

does contain the word: "any". How may I edit a strpos function to search only full words, i.e. not part of them?

Thanks.

标签: php strpos
1条回答
爷、活的狠高调
2楼-- · 2019-03-03 18:53

Try this regex.

https://regex101.com/r/Evd3iF/1

$re = '/\b[Aa]ny\b/';
$str = 'Company any any. Any, ';

If(preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0)){
        //string contains word
 }

// Print the entire match result
var_dump($matches);

The word to pattern can be made with

$pattern = "/\b[" . strtoupper(Substr($word,0,1)) . strtolower(Substr($word,0,1)) . "]" . Substr($word,1);

Please note I wrote this answer on my phone, so I may have made a mistake in the above pattern

查看更多
登录 后发表回答