PHP preg_match,当2个单词可能出现在随机序列中时进行匹配

2022-03-29 00:00:00 regex php preg-match

有可能匹配两个可能出现在随机序列中的单词吗? 示例:

$title = "2 pcs watch for couple";
$title = "couple watch 2 pcs";

我当前使用的是两个正则表达式:

if (preg_match("/2( )?pcs/i", $title) and preg_match("/couple/i", $title))

我只想知道是否只有1个就可以完成?


解决方案

如果只是测试字符串中是否存在这两个单词,可以使用

'/couple.*2 pcs|2 pcs.*couple/' 

相关文章