Top "Case-insensitive" questions

An operation is case insensitive when uppercase and lowercase characters are equally treated.

MongoDB: Is it possible to make a case-insensitive query?

Example: > db.stuff.save({"foo":"bar"}); > db.stuff.find({"foo":"bar"}).count(); 1 > db.stuff.find({"foo":"BAR"}).…

mongodb case-insensitive
SQL- Ignore case while searching for a string

I 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-case
How can I do a case insensitive string comparison?

How can I make the line below case insensitive? drUser["Enrolled"] = (enrolledUsers.FindIndex(x => x.Username == (string)drUser["Username"]) != …

c# string-comparison case-insensitive
Case insensitive comparison of strings in shell script

The == operator is used to compare two strings in shell script. However, I want to compare two strings ignoring case, …

string shell compare case-insensitive
How to set Sqlite3 to be case insensitive when string comparing?

I want to select records from sqlite3 database by string matching. But if I use '=' in the where …

sqlite case-insensitive
How to make String.Contains case insensitive?

How can I make the following case insensitive? myString1.Contains("AbC")

c# .net vb.net string case-insensitive
SQL server ignore case in a where expression

How 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-insensitive
Case insensitive string as HashMap key

I would like to use case insensitive string as a HashMap key for the following reasons. During initialization, my program …

java dictionary case-insensitive
Case-Insensitive List Search

I have a list testList that contains a bunch of strings. I would like to add a new string into …

c# list search case-insensitive
Case-insensitive search in Rails model

My product model contains some items Product.first => #<Product id: 10, name: "Blue jeans" > I'm now importing some …

ruby-on-rails activerecord case-insensitive