Quote:
Originally Posted by UK Jimbo
I've noticed that some of the URL based rules (.jp, .no, etc) need a bit of refining as they'll incorrectly match stuff like myimage.jpeg
It'll be a pretty easy regexp fix, I'll take a look when I get a chance.
|
I'm considering changing the following:
Code:
regexp:a_dotjapan:10:any:"/\.jp/i"
to this:
Code:
regexp:a_dotjapan:10:any:"/\.jp\b/i"
the same \b word boundary could be applied to the analogue problem etc.
Do you foresee any problem with using \b in some of the rules?