我使用 php preg_match将变量中的第一个和最后一个单词与给定的第一个和最后一个特定单词匹配,
例子:
$first_word = 't'; // I want to force 'this'
$last_word = 'ne'; // I want to force 'done'
$str = 'this function can be done';
if(preg_match('/^' . $first_word . '(.*)' . $last_word .'$/' , $str))
{
echo 'true';
}
但问题是我想强制匹配整个单词(开始和结束)而不是第一个或最后一个字符。