Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bing: search - match only exact literal strings?

I'm using PHP and the Bing API to search for certain domainnames. I want only the results that are an EXACT match.

Somehow Bing returns results that do not match exactly.

When I search for :

"www.gebouw.nl"

I sometimes also get results like "www.gprgebouw.nl"

Is there a way to tell Bing to search only for EXACT matches?

like image 367
Dylan Avatar asked Apr 17 '11 21:04

Dylan


1 Answers

Try adding a plus sign to your query. e.g. +www.gebouw.nl which is %2Bwww.gebouw.nl when url encoded

http://www.google.com/support/websearch/bin/answer.py?answer=136861

http://onlinehelp.microsoft.com/en-us/bing/ff808438.aspx

like image 152
nick Avatar answered Oct 22 '22 18:10

nick