block oas

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
Chancey

block oas

Post by Chancey »

How do I block "oas" but not toast, roast boast coast, or oases just OAS

Code: Select all

/oas[^w$]/
still doesn't do it for me.
Guest

Re: block oas

Post by Guest »

Chancey wrote:How do I block "oas" but not toast, roast boast coast, or oases just OAS

Code: Select all

/oas[^w$]/
still doesn't do it for me.
Excluding toast boast oases ect ect, but catching anything like oas_ads, oasads or oascookies
Guest

Post by Guest »

Code: Select all

/\#.*(oas[^w$!])/
This code works for me I think..
Guest

Post by Guest »

Code: Select all

/\#.*(oas[^w$!])/
This code works for me I think..
Guest

Post by Guest »

I use the non regex wildcards

Code: Select all

http://oas.*
http://oascentral*
with no problems
Locked