How can i use $regex for matching any string contains '#'. Unlike other characters, # seems to be acting differently.
{"id" : {$regex : "what should go here"}}
does match strings that does not contains # as well. I was trying with .*\\#.*
kind of regex.