Most voted "cash-sensitivity" questions
Case sensitive is an English language term that means size sensitive, or case sensitive, it is used to indicate that there are differences between upper case and normal case letters. Methods and command in a program or compiler, distinguishes between font sizes.
Learn more…11 questions
Sort by count of
-
38
votes3
answers2673
viewsHow to make "case-insensitive" comparisons in Sqlite?
Since there’s an obsession with accent questions, here goes mine :) Sqlite allows direct comparisons or through like with any encoding/charset as long as it’s done byte to byte. It only allows…
-
31
votes6
answers3667
viewsAre there objective advantages to a language being "case sensitive" or not?
Or is this just taste? I don’t want to if you like one more than the other. I don’t care why people like one or the other. I don’t want any bad answers. I don’t want to know historical reasons. I…
encoding-style language-design case-insensitive cash-sensitivityasked 9 years, 4 months ago Maniero 444,682 -
15
votes2
answers189
viewsAre HTTP headers case sensitive or case insensitive?
Two headers with the same name but one in upper case and the other in lower case, by default, are considered the same? What HTTP does, unite them, ignore some or send both? An application that waits…
-
12
votes1
answer100
viewsHow to define Titlecase using regex in Javascript?
I have this Function: var titleCase = function(s) { return s.replace(/(\w)(\w*)/g, function(g0, g1, g2) { return g1.toUpperCase() + g2.toLowerCase(); }); } If I call her by passing something she…
-
9
votes2
answers1680
viewsDisconnect case sensitive in Postgres
When I make the command select * from tabela where name like '%teste%' the line with the name TesTe returns, but the same does not happen in postgres, I do not want to put lower(name) to work, how…
-
5
votes2
answers4615
viewsSQL LIKE is Case Sensitive(Case Sensitive)?
By having this doubt, I did not find quick results in Portuguese that offer answer(most of the results are in Stackoverflow in English). It would be interesting to have an objective answer here in…
-
4
votes2
answers2443
viewsT-SQL with case sensitive like
Is it possible to make a query in SQL Server 2008 with sensitive like? Actually, I’m looking in a column with a list of acronyms, which represent system flags, which differentiate uppercase and…
-
4
votes2
answers855
viewsMake comparison using String.Contains() disregarding Casing
I need to check if a given term exists within a string (in SQL is something like like '%termo%'). The point is, I need this done without considering Casing of the two strings. How can I do that?…
c# string comparison case-insensitive cash-sensitivityasked 7 years, 10 months ago Jéf Bueno 67,331 -
2
votes1
answer52
viewsHow to make Git case sensitive?
My operating system is not case sensitive by default, which means that there is no difference between capitalizing the letters of a filename, for example. This behavior constantly gets in my way…
-
1
votes1
answer37
viewsI cannot delete the "cloned" folder with Case-Sensitive in my Github repository
I created a repository on Github and sent my application containing an X folder with the full name in lower case, when actually the first letter of the name should be uppercase. To solve this…
-
0
votes0
answers379
viewsIs there any way to make apache case insensitive on linux?
I made the entire application using Windows,e é relatively grande, e em muitas partes do código esqueci das regras de case sensitive, como o windows ignora isso não pensei em mudar nada, except that…