Skip to main content

Google Search Operators

Google search operators description

Description of Search operators

Some of the operators won't work if you leave any space between the operator and the colon(:).Google may change how undocumented operators work or may eliminate them completelyAlways the the query word exactly after the colon without leaving any space.Operetors can be placed anywhere in the query but placing the operators on the right is prefferable because it is how google advanced search works.


  • allinanchor:
    Using this operator, google refines your result to the pages containing the query words you specify in the operator on links to the page.For example, [allinanchor:New Delhi] will give the results in which the pages in which anchor text on links to the pages contain the words "New" and "Delhi".

  • allintext:
    If you use allintext, Gooogle restricts results to those containing all the query terms you specify in the text of the page.For example, [allintext:Best Hotels] will return pages which contain "Best" "Hotels" in their text.

  • allintitle:
    Using this operator will refine your your searches to the pages which contain your specified words in their title.

  • allinurl:
    By the use of this operator, Google reduces your search results to the pages which contain your specified words in their url

  • cache:
    The query cache:url will display Google's cached version of a web page.

  • filetype:
    This operator is very helpful to find the files of a specific format.Suppose you enter[intext:query filetype:pdf] , Google will return pdf files which contain your query words in their text.Its a very useful operator to find books, music files and much more.

  • intitle:
    It works same as the allintitle operator.What is novel here is that putting intitle in front of every query word is equivalent of putting allin title in front of whole search query.For example writing [intitle:Narender intitle:modi] is euivalent of writing [allintitle:Narender modi].

  • inurl:
    Its same as allintitle but has the same difference as intitle and allintitle has.

  • info:
    This tells google to return some information about the web page whose url you specify in the search query.

  • intext:
    Its same as allintitle but has the same difference as intitle and allintitle has.

  • link:
    This operator helps to find the pages that point to the url in your search query [link:url].

  • location:
    If you include location: in your query , Google will return the articles only from the specified location.

  • site:
    If you use this operator Google will restrict your result to the domain you specify and the webpages which are associated with that domain.

Comments

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i