I am looking for a string in mongo that does not discriminate between lower and upper case, the problem is that if a record has a "+" sign it does not find it.
{ username: { $regex: "[email protected]", $options: "i" } } // does not work
{ username: { $regex: "[email protected]", $options: "i" } } // works