Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for special characters in Google [closed]

Do you know how to look for special characters with google...?

I'm looking at bash code and there's the ## operator. I would like to know what It does but I wasn't able to figure out a way to protect the character (I'm not sure it's even possible).

This is particularly annoying when you're looking for some code patterns, some characters are always ignored.

like image 529
LB40 Avatar asked May 09 '09 01:05

LB40


People also ask

How do I search for special symbols in Google?

To search for a specific symbol, use the symbol filter. For example, the following search returns all classes, functions and variables with "immutable" in the name.

Does Google recognize special characters?

You can fine-tune your search query and increase the accuracy of its results by using special characters and operators, such as +, –, ~, .., OR, and quotation marks.

How do I open the special characters menu?

In your document, position the insertion point where you want the special character to appear. Press and hold down the ALT key while you type the four number Unicode value for the character. Note that NUM LOCK must be on, and you have to use the number pad keys to type the Unicode character value.


2 Answers

Google strips most punctuation from queries, as described here, so it won't help you with the bash syntax.

It's very easy to search for the string "##" in the bash documentation: Just run "info bash", hit "s", and enter "##" as the search string.

like image 128
Nathan Kitchen Avatar answered Oct 12 '22 11:10

Nathan Kitchen


google strips puntuation, imho, because:

  • it's somewhere used for special search (chars like - to exclude, +to add and 10..20 to specify a range)
  • to avoid spammers to get email addresses (characters like @ or .) in my experience, it's even impossible to escape special characters. the only solution I found, by now, is using yahoo http://it.search.yahoo.com/
like image 29
alekone Avatar answered Oct 12 '22 10:10

alekone