filter question

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

filter question

Post by radacoin »

How would I go about setting up a filter that would block all images that have the same address except for a few different numbers. For example, how would I block both: siteads123.whatever.com and siteads567.whatever.com?
User avatar
mcm
Posts: 359
Joined: Sat Jun 10, 2006 2:36 am

Post by mcm »

Regexp is the only way:

/siteads\d{3}\.whatever\.com/
Guest

Post by Guest »

mcm wrote:Regexp is the only way:

/siteads\d{3}\.whatever\.com/
Doesn't this simple exp work also?

*siteads*.whatever.com*
Locked