Searching for symbols is a common in programming, especially when you are new to a language.
For example, I had a question about the ::
operator in Python, and that is not searchable. People looking for things like this or Object []
(array of Objects), would not find what they want.
Why do search engines seem to ignore symbols completely? They are just characters like any others. I can see why it would be hard to extract semantics from symbols compared to words (eg: a search engine can figure out that "find," "finds," "found" are all related, if not the same word), but is it really that hard to search for them?
I can also see why in everyday use you'd want symbols to be ignored, but how hard would it
be to make it look for something explicitly (eg: "::"
would search for ::)