欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 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)