How to find full words only in string

前端 未结 5 1746
臣服心动
臣服心动 2020-12-21 00:44

How to find full words only in string



        
5条回答
  •  伪装坚强ぢ
    2020-12-21 01:09

    $str ="By ILI LIKUALAYANA MOKHTAKUALAR AND G. SURACH Datuk Dr Hasan Ali says he has no intention of joining Umno. Pic by Afendi Mohamed KUALA LUMPUR: FORMER Selangor Pas commissioner Datuk Dr Hasan Ali has not ruled out the possibility of returning to Pas' fold";
    $search ="KUALA";
    $pattern='/\b$search\b/';
    if (preg_match($pattern, $str, $matches)) echo "FOUND AT POSITION ".$matches[1];
    else echo "NOT FOUND"
    

提交回复
热议问题