Internet Search
Posted: Sat Dec 31, 2016 4:37 pm
There seems to be no definitive place for the search feature that requires an extra charge. Can you use RE when Internet searching? If not why not?
Why does
work fine but:
fails? yet works fine on an indexing site http://www.nzbindex.nl/search/?q=%22.720p%22+%7C+%22.1080p%22&age=&max=25&minage=&sort=agedesc&minsize=100&maxsize=&dq=&poster=&nfo=&hidespam=0&hidespam=1&more=1?
I can't do Boolean logic on phrases on strings? Also if I wan to exclude the character string:
it fails to exclude instances of [PRIVATE}?
Does the square bracket break the RE term? is there a documented list of characters like this? I'm finding it difficult doing the most basic searches any help would be appreciated.
Why does
- Code: Select all
702p | 1080p
work fine but:
- Code: Select all
".720p" | ".1080p"
fails? yet works fine on an indexing site http://www.nzbindex.nl/search/?q=%22.720p%22+%7C+%22.1080p%22&age=&max=25&minage=&sort=agedesc&minsize=100&maxsize=&dq=&poster=&nfo=&hidespam=0&hidespam=1&more=1?
I can't do Boolean logic on phrases on strings? Also if I wan to exclude the character string:
- Code: Select all
-[PRIVATE}
it fails to exclude instances of [PRIVATE}?
Does the square bracket break the RE term? is there a documented list of characters like this? I'm finding it difficult doing the most basic searches any help would be appreciated.