Top "Case-sensitive" questions

An operation is case sensitive when uppercase and lowercase characters are treated differently.

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 do I commit case-sensitive only filename changes in Git?

I have changed a few files name by de-capitalize the first letter, as in Name.jpg to name.jpg. Git …

git case-sensitive git-commit git-config
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
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
How can I make SQL case sensitive string comparison on MySQL?

I have a function that returns five characters with mixed case. If I do a query on this string it …

mysql sql interop case-sensitive string-comparison
How can I convert uppercase letters to lowercase in Notepad++

I use Notepad ++ for coding mostly. How can I convert capital letters to lowercase and vice versa?

notepad++ case-sensitive
Is SQL syntax case sensitive?

Is SQL case sensitive. I've used MySQL and SQL Server which both seem to be case in-sensitive. Is this always …

sql case-sensitive
Changing capitalization of filenames in Git

I am trying to rename a file to have different capitalization from what it had before: git mv src/collision/…

git rename case-sensitive file-rename
Should URL be case sensitive?

I noticed that HTTP://STACKOVERFLOW.COM/QUESTIONS/ASK and http://stackoverflow.com/questions/ask both works fine - actually the …

url case-sensitive
Is Java RegEx case-insensitive?

In Java, when doing a replaceAll to look for a regex pattern like: replaceAll("\\?i\\b(\\w+)\\b(\\s+\\1)+\\b", "$1"); (…

java regex case-sensitive