您的位置:首页 > 编程语言 > Go语言

如何高效的使用google

2016-10-27 14:28 281 查看
1.先来看几个例子
(1)你想在NYTimes上查看学校的 test scores,但不是SATs,而且年限要在2008-2010之间。
那么输入如下的输入会得到更好的结果:
site:nytimes.com
~college
“test scores”
–SATs
2008..2010

a>利用site指定只在nytimes.com这个域名上搜索内容
b>利用~来搜索相关的内容,如这里college对应的词有higher education or university
c>利用双引号只搜索相应的短语,还不是分开的单词
d>利用两句点来表示时间年限
(2)关于普通燕子的空速的报道
filetype:pdf
intitle:velocity
 *swallow
三个部分:
a> filetype:pdf 指定了要搜索的文件的类型,除了例子中指定的pdf外,还可以指定doc, jpg, png, 等等格式
b> intitle:velocity只显示出那些包含velocity的搜索结果
c> *swallow 利用*表示中心词是swallow,但是前面可以匹配其它的限定词在这里比方说还可以有其它类型的swallow,如Red Rumped swallow, LesserStriped swallow等都会在结果中列出。
 
2. 搜索技巧
(1)利用引号限定搜索的特定词语,如 "chinese cultural"
(2)利用连字符去掉不相关的搜索结果,如 -American, 除掉美国相关的内容
(3)利用site关键字限定搜索网站,如site:google.com
(4)利用link找链接,如link:nytime.com 找链接到nytime.com的链接
(5)利用*号做通配符,如 come * right now * at me
(6)找到与某一网站相关的其它网站,如related: amazon.com
(7)直接做数学运算,如: 3*4+5,Planck's Constant 普朗克常量
(8)利用OR连接符做多个搜索词的结果,如"howto prepare for a job interview" OR "Best way to prepare for a jobinterview"
(9)利用..来限定数字或时间范围,如What teamshave won the Stanley Cup .. 2004, 42..45
(10)慢慢的添加关键词,如第一次:job interviews, 第二次:prepare for job interview, 第三镒:how to prepare for a job interview
(11)尽量使用关键的单词:如:Where can I find a Chinese restaurant that delivers. 可以用:Chinese restaurants nearby 代替
(12)尽量使用描述性语句,而不要用问句,如应该使用:troubleshoot driver problems Ubuntu 而不是:how to install drivers in Ubuntu
(13)利用filetype找特定的文件,如 finiance anlysis filetype:pdf
(14)google能直接对单位进行转换,如货币转换,重量,温度等单位的换算
 
 
参考文献: http://mashable.com/2011/11/24/google-search-infographic/#Huy45fYlskqW http://www.lifehack.org/articles/technology/20-tips-use-google-search-efficiently.html
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  google 搜索 谷歌