我有一个正则表达式如下:
^/[a-z0-9]+$
这匹配字符串,如/ hello或/ hello123。
但是,我想它排除几个字符串值,如/ ignoreme和/ ignoreme2。
我试过几个变种,但似乎不能得到任何工作!
我最近的微弱企图是
^/(((?!ignoreme)|(?!ignoreme2))[a-z0-9])+$
任何帮助将感谢:-)
这里有另一种方式:(使用
negative look-ahead):
原文链接:https://www.f2er.com/regex/358340.html^/(?!ignoreme|ignoreme2|ignoremeN)([a-z0-9]+)$
注意:只有一个捕获表达式:([a-z0-9])。