Questions:
How do you search for non-alphanumeric characters when using Google?
Why doesn't Google always interpret strings enclosed within double-quotes literally?
What is Google's escape character e.g. how would I search for something that contains a double-quote?
Backgound:
I am currently learning Grails. I was reading Mastering Grails: Grails services and Google Maps (which is very good tutorial series BTW) when I came across the following line of code:
def result = [:]
By looking at the surrounding code it seems like result
is defined to be some kind of map, but I wanted more information on what precisely "=[:]
" does.
How do you Google something like this?
I tried searching for:
grails "[:]"
but this returns the same result set as searching for "grails
".
That happens because searching just for:
"[:]"
does not return any results.
Thanks for your time!