Most voted "case-insensitive" questions
Case insensitive is an English-based term that in programming language means that a given program or compiler will run, and will not distinguish between upper and lower case letters, being a $var variable equal to $VAR which is also equal to $Var.
Learn more…10 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 -
10
votes2
answers2045
viewsAre functions and methods in PHP case-insensitive?
Some time ago, by an accident at the time of a debug I realized that PHP makes no difference between upper and lower case when calling a function. Example: print_r($teste); print_R($teste);…
-
7
votes2
answers2337
viewsHow to make "Replace" replace all occurrences of a word without taking uppercase or lowercase?
The function Replace supersedes all occurrences of a word or expression, but taking into account uppercase and lowercase: string str = "Hello WorLLd";//Substitui só os 'l' e não o 'L' str =…
-
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
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 -
3
votes1
answer161
viewsBecause in PHP, some predefined constants are case-insensitive?
Because, in the PHP, some predefined constants are case-insensitive (do not differentiate capital letters from minuscules) and others are not? Example 1: echo __FILE__; // index.php echo __file__;…
-
3
votes2
answers260
viewsSearch with case insensitive
Good afternoon, I have a search field but I need it to return the values regardless of toLowerCase() and toUpperCase() Ex Bola, I can look up how ball or else BALL I have the following line of code:…
-
0
votes1
answer33
viewsMake a query with pymongo filtering by a string ignoring uppercase and minuscule letters
I need to make a query in a database in Mongodb using the pymongo library in python, the query I am making is as follows: dbCliente.find({"nome": "carlos"}) I want to return the client whose name is…
-
-1
votes2
answers508
viewsCase Insensitive - Jquery Search System
Good morning! I have this code that searches inside a list <ul> <li>: $(function(){ $('input[type="text"]').keyup(function(){ var searchText = $(this).val(); $('.filter-task >…