当前位置:Gxlcms > PHP教程 > 正则匹配任意字母但不包括.

正则匹配任意字母但不包括.

时间:2021-07-01 10:21:17 帮助过:8人阅读

正则匹配任意字母但不包括about,help,conect


回复讨论(解决方案)

$str = "正则匹配任意字母但不包括about,help,conect";if(preg_match("/about|help|conect/is", $str,$match)){	echo '字符串中存在'.$match[0].'字段';}

正则匹配任意字母但不包括about,help,conect

不是这样的啊

我要做伪静态 要纯正则来匹配啊 RewriteRule /(任意字母不包括help|about|contect).html

RewriteCond $1 !^(help\.html|about\.html|contect\.html)

人气教程排行