Top "Case-sensitive" questions

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

Case-sensitive where statement in laravel

How can I do a case-sensitive string match with laravel? SELECT * FROM `invites` WHERE `token`='OGwie2e2985tOEGewgu23hUFs' Can …

php mysql laravel-4 eloquent case-sensitive
Bash variables: case sensitive or not?

Is bash shell scripting case sensitive? Is variable date the same as DATE?

linux bash shell case-sensitive variable-names
SQL Server Column names case sensitivity

The DB I use has French_CI_AS collation (CI should stand for Case-Insensitive) but is case-sensitive anyway. I'm trying …

sql-server collation case-sensitive case-insensitive sqlbulkcopy
Are property values in CSS case-sensitive?

I have observed that some CSS properties, like font-family declared with quotation marks, perhaps are case-sensitive, but all other are …

html css properties case-sensitive
Why is SQL Server '=' comparator case insensitive?

I just realized that SQL server '=' comparator when used for text comparison is case insensitive. I have a …

sql sql-server case-sensitive
Set two flags in Java regex.Pattern

I need a matcher like this: Matcher kuchen = Pattern.compile("gibt es Kuchen in der K\u00FCche",Pattern.CASE_…

java regex unicode case-sensitive
Why are many languages case sensitive?

Why are many languages case sensitive? Is it simply a matter of inheritance? C++ is case-sensitive because C is, Java …

language-design case-sensitive
DBunit; confusion over case sensitivity on table/column names

I'm getting this error when I start up my application Caused by: org.dbunit.dataset.NoSuchColumnException: CLIENT.ID - (Non-uppercase …

java case-sensitive dbunit mysql5
Need to change lowercase_underscore string to camelCase

I Need to change String : underbar + lowercase = uppercase.(and the opposite) my_name -> myName Is there any library …

java case-sensitive
Sort array items in PHP so that it is not case sensitive to letters

When I use sort($topics) I get something along the lines of: Apple Green Zebra grass In this example, "grass" …

php sorting case-sensitive