yahoo.com/*?

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

yahoo.com/*?

Post by B_I_R_D »

Hi everyone.
I have trouble translating simple expression into regular

yahoo.com/*?
->
/yahoo\.com.*\?*(?!#DIV)/
/yahoo\.com(.*\?*)(?!#DIV)/

no one of this expressions working
can anyone help me with this..
Guest

Post by Guest »

You got pretty much the right idea.. from just looking at that I guess your trying to block yahoo's div?

Code: Select all

/yahoo\.com.*\?.*\#DIV/
B_I_R_D

Post by B_I_R_D »

Thanks for your reply. I wanted to block yahoo.com/*? Except div tags..
I think I found right expression->
/yahoo\.com.*\?.*[^)]$/

i tried to use (?!#DIV) but it dont seems to work..
Can anyone tell me why (?!#DIV) doesnt work in
/yahoo\.com(.*\?*)(?!#DIV)/
Locked