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: "ExamPle+33@gmail.com", $options: "i" } } // does not work
{ username: { $regex: "ExamPle33@gmail.com", $options: "i" } } // works