Mongo (current version 2.0. 0) doesn’t allow case-insensitive searches against indexed fields – see their documentation. For non-indexed fields, the regexes listed in the other answers should be fine.7 Kas 2011
Read moreAre MongoDB field names case sensitive?
A database with “” empty string is not a valid database name. Database name cannot be more than 64 bytes. Database name are case-sensitive , even on non-case-sensitive file systems. Thus it is good to keep name in lower case.
Read moreIs JavaScript match case-insensitive?
A general requirement while working in javascript is case-insensitive string comparisons . Case-insensitive comparison means equating strings irrespective of their case.
Read moreIs JavaScript match case-insensitive?
A general requirement while working in javascript is case-insensitive string comparisons . Case-insensitive comparison means equating strings irrespective of their case.
Read moreHow do you make a case-insensitive in JavaScript?
The most basic way to do case insensitive string comparison in JavaScript is using either the toLowerCase() or toUpperCase() method to make sure both strings are either all lowercase or all uppercase .
Read moreHow do you make a case-insensitive in JavaScript?
The most basic way to do case insensitive string comparison in JavaScript is using either the toLowerCase() or toUpperCase() method to make sure both strings are either all lowercase or all uppercase .
Read more