Page 1 of 1

RSS feed filter - exact word only?

Posted: July 4th, 2014, 10:20 am
by sasdfas
Hi,
I want to grab nzbs in my RSS feed that have for example the exact word "hat" in the title.
hat.magazine.july.TruePDF

Unfortunately when I put hat into the filter box, it grabs things like chat, hatter, shatter and so forth. Anything that contains the letters hat in sequence.

What expression can I use to grab only the full word hat ?

Thanks

Re: RSS feed filter - exact word only?

Posted: July 4th, 2014, 12:32 pm
by shypike
You'll need to use a regular expression.
Google for Python Regex to study the subject.
Then prepend your expression with re:

It's probably something like:
re:[. ]hat[. ]
Which is hat surrounded by either dots or spaces.