2

Google did not give me the results desired when querying for

python == and in or in

This is seemingly because google omits common programming language operators like == from search terms. Is there a way to get around this limitation?

Previous answers recommended google code search, yet that is shut down. Symbolhound.com was recommended, yet returned an empty results page.

This is not about searching for code, but instead searching for programming-related documentation (most often found on SO ;-), so are there any ways to search the web (or, for that matter, SO) for programming syntax?

Community
  • 1
  • 1
serv-inc
  • 35,772
  • 9
  • 166
  • 188
  • 1
    Not that it answers your query well, but check out [stackse](http://stackse.com) as it searches stackoverflow for special characters – ren Mar 07 '16 at 11:01

1 Answers1

4

There's an answer on the WebApps Stack I'll paraphrase here for posterity.

Write out the name of each symbol followed by "operator". Include the programming language if you want to be more specific.

Example                           Recommended Search
----------                        -----------
+= (addition assignment)          "plus equals operator"
%  (modulus)                      "percent operator"
^  (C++ bitwise XOR)              "caret operator C++"
Community
  • 1
  • 1
Oran D. Lord
  • 697
  • 1
  • 9
  • 23