正则匹配任意字母但不包括.
程序员文章站
2022-04-19 16:51:47
...
正则匹配任意字母但不包括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)
上一篇: php 保留两位小数