Regular expression for a string containing one word but not another

后端 未结 4 2052
孤独总比滥情好
孤独总比滥情好 2020-11-22 02:27

I\'m setting up some goals in Google Analytics and could use a little regex help.

Lets say I have 4 URLs

http://www.anydotcom.com/test/search.cfm?met         


        
4条回答
  •  甜味超标
    2020-11-22 02:39

    ^(?=.*selector=size)(?:(?!details\.cfm).)+$
    

    If your regex engine supported posessive quantifiers (though I suspect Google Analytics does not), then I guess this will perform better for large input sets:

    ^[^?]*+(?

提交回复
热议问题