Google Search Cheet Sheet
🔎

Google Search Cheet Sheet

Tags
Tools
Published
Published June 25, 2022
Author
Aleksandr Lobanov
ВСЕ ОПЕРАТОРЫ МОЖНО КОМБИНИРОВАТЬ МЕЖДУ СОБОЙ.
 

I use the Python BNF Notation.

* - zero or more repetition.
+ - one or more repetition.
| - logical OR.
[ ] - optional parameter.
 
WORD ::= LETTER [LETTER]*
PHRASE ::= WORD WORD+
EXACT_PHRASE ::= "PHRASE"
QUERY ::= (WORD | PHRASE)*
 
define - Returns a definition of the given term.
define gregarious
 
before:YEAR
before:YYYY-MM-DD
 
after:YEAR
after:YYYY-MM-DD
 
 
@ - Returns search results that match a particular social media site.
phone recall @twitter
 
# - Returns search results that include a specific hashtag.
#throwbackthursday
 
~ - Include synonyms. Seems to be unreliable, and synonym inclusion is default now. Deprecating?
~cars
 
+ - Force exact-match on a single phrase. Deprecated with the launch of Google+. Deprecating? use ""
+cars
 
- - Excludes search results that include this term.
best tablets -drawing
 
| - Returns search results that match terms on either side of the pipe. The same as writing "OR" between search terms.
computer | tablet
 
"" - Returns search results that include all terms within quotes in the exact given order.
"never gonna give you up"
 
* - Returns search results where any words can be matched in place of the asterisk.
best * in america
 
.. - When placed between two numbers, returns search results that match within the number range.
chromebook 2007..2021
 
() - Used to group search terms and control the search logic of the query.
(best | worst) office suite
 
ФРАЗА1 OR ФРАЗА2 - ИЛИ
"ТОЧНАЯ_ФРАЗА1" OR "ТОЧНАЯ_ФРАЗА2"
(peach OR nectarine) nutrion facts - Круглыми скобками можно группировать выражения, как в математике.
ФРАЗА -СЛОВО -СЛОВО2 - Исключить из результата слово1 и слово2.
ФРАЗА -"ТОЧНАЯ_ФРАЗА" - Исключить точную фразу из запроса.
СЛОВО * СЛОВО - The asterisk (*) любое слово. “Wildcard”
Apple Macbook "$600.99" - Currency signs: $, €, £ цена в валютах
 
to - Convert measurements from one unit to another.
1 cup to tbsp
"PHRASE" - Поиск точной фразы.
PHRASE -WORD - Исключить из результата слово.
 
related: Returns other websites that are similar to the queried website. Поиск сайтов с похожим контентом. related:nytimes.com
 
site:YOUR_SITE QUERY - Поиск по определённому сайту.
site:4души.рф концерт
 
filetype:FORMAT QUERY - Найти определенные файлы.
filetype:pdf linkedin
filetype:txt site:ebay.com
 
intitle:WORD or intile:EXACT_PHRASE - В заголовке
intitle:backlink
intitle:"SEO backlink strategy"
 
PHRASE1 AROUND(8) PHRASE2 - Максимальное расстояние между фразами
SEO AROUND(8) backlinks - This way, the term ‘SEO’ is going to be a maximum distance of 8 words away from the term ‘backlinks’ in either direction:
 
intext:WORD or intext:EXACT_PHRASE - В тексте
allintext:PHRASE
 
inurl:WORD or inurl:EXACT_PHRASE - В url
allinurl:PHRASE
 
allintitle:PHRASE - all in title. Более подробный поиск по заголовкам.
allintitle: best seo backlink strategies for
 
ФРАЗА1 | ФРАЗА2- ИЛИ
 
cache:YOUR_SITE - последняя закешированная версия сайта.
inblogtitle: - This search operator is very similar to ‘allintitle:’, but is used specifically for search terms in blog titles.
 
inanchor: - Returns pages that are linked to using anchor text matching the search query. Deprecating? allinanchor: - Same as inanchor, but matching every term that appears after allinanchor. Deprecating?