[Tutorial] Advanced search commands for search engines

Remarks

2020/11/26 Thursday
Today, I saw some introductions about advanced search on the Internet. After learning a bit, I want to make a summary so that I can check it when I need it.

1. Exact match ""

The double quotation mark is an exact match, and only the content that is exactly the same as the content in the double quotation mark will be searched.

2. Does not contain-

Sometimes some of the content we search will be related to popular vocabulary. At this time, we can use the minus sign-for
[要搜索的内容] -[不想包含的内容]
example, when we search for the king, we include a large amount of the glory of the king, we can use it.
王者 -荣耀
Note: the content to be searched must be between the minus sign There must be a space, and there must be no space between the minus sign and the content not included.

Three, inurl:

inurl: This command is used to search in the URL.
inurl:[网站中想包含的词] [搜索的内容]
Such as: we want to search for java in the web page that contains the URL of csdn
inurl:csdn java

Four, intitle:

intitle: The content searched by this command is all the content that you want to search in the title of the html page,
intitle:[内容]
such as:
you want to search for the content that contains python in the title
intitle:python

Five, site:

The site: command is used to search in the specified website,
site:[网站] [内容]
such as: I want to find a blog in GitHub
site:github.com 博客

Six, filetype:

filetype: is used to find files in the corresponding format on the Internet,
filetype:[格式]
such as: I want to find computer-related pdf documents
filetype:pdf 计算机

Guess you like

Origin blog.csdn.net/l1447320229/article/details/110205153