首页 > 其他分享 >搜索引擎常用关键词

搜索引擎常用关键词

时间:2022-11-30 10:13:54浏览次数:31  
标签:常用 search 关键词 results 搜索引擎 specific source 搜索

搜索引擎常用关键词

通过添加搜索引擎关键词提升搜索准确度,需要记住的原则为

  • Google 通常会忽略任何标点符号(除了搜索运算符)。
  • 不要在符号或字词与搜索字词之间包含空格。使用此搜索命令,site:kinsta.com将起作用,但是site:kinsta.com不会。

搜索操作符列表

  • “search term” Use this to do an exact-match search. 强制匹配
  • OR Search for this OR that. This will return results related to the two terms or both.
  • AND Search for this AND that. This will only return results related to the two terms
  •  Exclude a term or search phrase.
  • ***** Acts as a wildcard and will match any word or phrase. 通配符
  • ( ) Groups multiple terms or operators to control how the search is shown.
  • $ Search for prices.
  • define: Displays the meaning of a word in a card-like result.
  • Cache: Returns the most recent cached version of a web page (as long as the page is indexed).
  • filetype: Shows results of a certain filetype (PDF, DOCX, TXT, PPT, etc.)
  • site: Limit results to a specific website.
  • related: Find sites related to another site.
  • intitle: Find pages that contain a specific word in the title.
  • allintitle: Like “intitle,” this finds web pages containing all of the specific words in the page title.
  • inurl: Finds pages with a certain word in the URL.
  • allinurl: Similar to “inurl,” this finds web pages containing all of the URL’s specific words.
  • intext: Finds pages containing a specific word in the content.
  • allintext: Finds results containing all of the specific words somewhere on the page.
  • AROUND(X) This proximity search finds pages containing two words (or phrases) within X words of each other.
  • weather: Finds the weather for a specific location.
  • stocks: See stock information
  • map: View map results for a location search.
  • movie: Finds information about a specific movie.
  • in Convert one unit into another (like currencies, weights, temperatures, etc.)
  • source: Find news results from a certain source within Google News.

常用搜索关键词介绍

  • 文件搜索

    filetype:[extension]

    比如搜索与B站相关的网站:

    支持的文件类型

    Adobe Flash (.swf)
    Adobe Portable Document Format (.pdf)
    Adobe PostScript (.ps)
    Autodesk Design Web Format (.dwf)
    Google Earth (.kml, .kmz)
    GPS eXchange Format (.gpx)
    Hancom Hanword (.hwp)
    HTML (.htm, .html, other file extensions)
    Microsoft Excel (.xls, .xlsx)
    Microsoft PowerPoint (.ppt, .pptx)
    Microsoft Word (.doc, .docx)
    OpenOffice presentation (.odp)
    OpenOffice spreadsheet (.ods)
    OpenOffice text (.odt)
    Rich Text Format (.rtf)
    Scalable Vector Graphics (.svg)
    TeX/LaTeX (.tex)
    Text (.txt, .text, other file extensions)
    Basic source code (.bas)
    C/C++ source code (.c, .cc, .cpp, .cxx, .h, .hpp)
    C# source code (.cs)
    Java source code (.java)
    Perl source code (.pl)
    Python source code (.py)
    Wireless Markup Language (.wml, .wap)
    XML (.xml)

  • 相关网站查找

    • related:[website] 查找相似的网站

    • site:[website] keyword 搜索指定链接中的关键词搜索结果

      搜官网介绍

  • 限定在某个位置出现关键词

    • inurl:[keyword]

      查看每个学校招生一栏的网页

    • intitle: 在标题中查找

      筛选某一年度的结果

    • intext: 在页面中查找

      相当于word中的全文搜索

  • 关键词运算

    • [keyword filetype:pdf site:gov] 查找特定网站的文件

      比如查找政府网页的某个文件

      How to find PDF downloads (on Government sites)

    • "[search term]" 强制完全匹配

    • keyword1 +keyword2 确保该关键词不丢失

    • -[keyword] 删除某关键词,比如某个品牌

标签:常用,search,关键词,results,搜索引擎,specific,source,搜索
From: https://www.cnblogs.com/mhlan/p/16937565.html

相关文章

  • Linux--常用命令精讲
    一、Linux命令基础  1.1:Shell脚本Shell是系统的用户界面,提供了用户与内核进行交互操作的一种接口。它接收用户输入的命令并把它送入内核去执行。所有语言的特性:源......
  • 这就是搜索引擎(4) 云存储之Google文件系统(GFS)
    1.背景之前说过,搜索引擎需要将互联网上百亿级别的网页内容存到本地磁盘上,基于这一存储海量数据的需求,Google开发了GFS。GFS(GoogleFileSystem)为了能够存储百亿级的海量......
  • Java常用IO流
    字节输入输出流FileInputStream字节输入流常用方法:intread(byte[]b,intoff,intlen)返回读取的长度,读取失败返回-1。最多读取len个字节,读来的数据存放在b中,从第b......
  • Windows常用快捷命令
      Windows常用快捷命令1.snippingtool,打开系统截图工具 2.notepad,打开记事本 3.calc,打开计算器 4.regedit,打开注册表 5.OneNote,打开OneNote 6.chrome,打开谷歌浏......
  • 一文了解 Go 标准库 strings 常用函数和方法
    耐心和持久胜过激烈和狂热。哈喽大家好,我是陈明勇,今天分享的知识是Go标准库——​​strings​​常用函数和方法。如果本文对你有帮助,不妨点个赞,如果你是Go语言初学者......
  • react常用hook中useMemo的使用
     作用:首先useMemo它使用来做缓存用的,只有当一个依赖项改变的时候才会发生变化,否则拿缓存的值,就不用在每次渲染的时候再做计算useMemo主要用来解决使用Reacthooks产生的......
  • 【转载】Django models常用字段类型
    models常用字段类型原文模型中的每一个字段都应该是某个Field类的实例,字段类型具有下面的作用:决定数据表中对应列的数据类型(例如:INTEGER,VARCHAR,TEXT)HTML中对......
  • thread常用API说明
    thread常用API说明1.当有很多线程在执行的时候,我们怎么去区分这些线程呢?此时需要使用Thread的常用方法:getName()、setName()、currentThread()等。1、此方法是Thread......
  • Gradle系列学习:Gradle的简介、常用命令和生命周期Gradle总结-生命周期
    一Gradle简介1.1graldeGradle是一个项目构建工具,它可以按照一定的规则把一堆目录和文件关联起来,自动化地构建从而形成一个项目。AndroidStudio的build就是通过Gradle来实......
  • Mysql 常用方法
    删除重复数据(根据url删除重复数据)DELETEFROM`BaiDu_know_new_copy1`WHERE`user_url`IN(SELECTxFROM(SELECT`user_url`ASxFROM`BaiDu_k......