We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
推荐站点:google search education
如:"what is javascript"
"what is javascript"
如:html AND css 返回包含两者的搜索结果
html AND css
如:(javascript OR python) free course 返回包含javascript或者包含python的搜索结果
(javascript OR python) free course
javascript
python
如:javascript -css 排除对css的搜索
javascript -css
css
可以使用*通配符作为占位符,它会代替掉任何单词或者短语。
*
如:"how to start * in 6 months"
"how to start * in 6 months"
如:site:freecodecamp.org
site:freecodecamp.org
如:filetype:pdf learn css
filetype:pdf learn css
如:ecmascript 2016..2018
ecmascript 2016..2018
The text was updated successfully, but these errors were encountered:
No branches or pull requests
推荐站点:google search education
1. 使用引号强制精确匹配
如:
"what is javascript"
2. 使用 AND 操作符
如:
html AND css
返回包含两者的搜索结果3. 使用 OR 操作符
如:
(javascript OR python) free course
返回包含javascript
或者包含python
的搜索结果4. 使用 - 操作符排除
如:
javascript -css
排除对css
的搜索5. 使用 * 通配符
可以使用
*
通配符作为占位符,它会代替掉任何单词或者短语。如:
"how to start * in 6 months"
6. 单个网站点内进行搜索
如:
site:freecodecamp.org
7. 针对文件类型搜索
如:
filetype:pdf learn css
8. 搜索数字范围
如:
ecmascript 2016..2018
后话
The text was updated successfully, but these errors were encountered: