Top "Case-insensitive" questions

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

Case insensitive 'Contains(string)'

Is there a way to make the following return true? string title = "ASTRINGTOTEST"; title.Contains("string"); There doesn't seem to …

c# string contains case-insensitive
How do I do a case-insensitive string comparison?

How can I do case insensitive string comparison in Python? I would like to encapsulate comparison of a regular strings …

python comparison case-insensitive
How to do case insensitive search in Vim

I'd like to search for an upper case word, for example COPYRIGHT in a file. I tried performing a search …

search vim case-insensitive
Contains case insensitive

I have the following: if (referrer.indexOf("Ral") == -1) { ... } What I like to do is to make Ral case insensitive, …

javascript string case-sensitive case-insensitive
How can I search (case-insensitive) in a column using LIKE wildcard?

I looked around some and didn't find what I was after so here goes. SELECT * FROM trees WHERE trees.`title` …

mysql sql sql-like case-insensitive
Case insensitive regular expression without re.compile?

In Python, I can compile a regular expression to be case-insensitive using re.compile: >>> s = 'TeSt' >&…

python regex case-sensitive case-insensitive
String contains - ignore case

Is it possible to determine if a String str1="ABCDEFGHIJKLMNOP" contains a string pattern strptrn="gHi"? I wanted to know …

java string contains case-insensitive
Case insensitive searching in Oracle

The default behaviour of LIKE and the other comparison operators, = etc is case-sensitive. Is it possible make them case-insensitive?

sql oracle case-sensitive case-insensitive sql-like
Case-insensitive search

I'm trying to get a case-insensitive search with two strings in JavaScript working. Normally it would be like this: var …

javascript search string-comparison case-insensitive
How do I make my string comparison case insensitive?

I created a Java program to compare two strings: String s1 = "Hello"; String s2 = "hello"; if (s1.equals(s2)) { System.…

java string comparison case-insensitive