Top "Case-insensitive" questions

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

How do I make jQuery Contains case insensitive, including jQuery 1.8+?

I'm trying to use "contains" case insensitively. I tried using the solution at the following stackoverflow question, but it didn't …

jquery contains case-sensitive case-insensitive
Is VB really case insensitive?

I'm not trying to start an argument here, but for whatever reason, it's typically stated that Visual Basic is case …

vb.net vba case-sensitive case-insensitive
SOLR Case Insensitive Search

I've a problem in SOLR Search. I have a data like this: I use solr admin to find this data …

solr case-insensitive
How to change MySQL table names in Linux server to be case insensitive?

I'm working on an old website that used to be hosted on an Apple server. When it was migrated into …

mysql linux case-insensitive
Case insensitive string search in golang

How do I search through a file for a word in a case insensitive manner? For example If I'm searching …

string go case-insensitive string-search
Case insensitive JSON to POJO mapping without changing the POJO

Does anyone know how com.fasterxml.jackson.databind.ObjectMapper is able to map JSON properties to POJO properties case insensitive? …

java json data-binding case-insensitive fasterxml
Case insensitive matching in Java switch-case statement

I was wondering if there is a way to perform case insensitive match in java switch case statement. the default …

java string switch-statement case-sensitive case-insensitive
Case-insensitive string startswith in Python

Here is how I check whether mystring begins with some string: >>> mystring.lower().startswith("he") True The …

python string performance case-insensitive startswith
How to make string check case insensitive?

I've started learning Python recently and as a practise I'm working on a text-based adventure game. Right now the code …

python string case-insensitive
PHP & Case Sensitivity

In PHP, variable and constant names are case sensitive, while function names are not. As far as I am aware, …

php case-sensitive case-insensitive