An operation is case insensitive when uppercase and lowercase characters are equally treated.
Example: > db.stuff.save({"foo":"bar"}); > db.stuff.find({"foo":"bar"}).count(); 1 > db.stuff.find({"foo":"BAR"}).…
mongodb case-insensitiveI have the following data in a Table PriceOrderShipped PriceOrderShippedInbound PriceOrderShippedOutbound In SQL I need to write a query which …
sql sql-server case-insensitive sql-like ignore-caseHow can I make the line below case insensitive? drUser["Enrolled"] = (enrolledUsers.FindIndex(x => x.Username == (string)drUser["Username"]) != …
c# string-comparison case-insensitiveThe == operator is used to compare two strings in shell script. However, I want to compare two strings ignoring case, …
string shell compare case-insensitiveI want to select records from sqlite3 database by string matching. But if I use '=' in the where …
sqlite case-insensitiveHow can I make the following case insensitive? myString1.Contains("AbC")
c# .net vb.net string case-insensitiveHow do I construct a SQL query (MS SQL Server) where the "where" clause is case-insensitive? SELECT * FROM myTable WHERE …
sql sql-server where-clause case-insensitiveI would like to use case insensitive string as a HashMap key for the following reasons. During initialization, my program …
java dictionary case-insensitiveI have a list testList that contains a bunch of strings. I would like to add a new string into …
c# list search case-insensitiveMy product model contains some items Product.first => #<Product id: 10, name: "Blue jeans" > I'm now importing some …
ruby-on-rails activerecord case-insensitive