Questions tagged as 'case-insensitive'

3
answers

How to make case-insensitive comparisons in SQLite?

As there is an obsession with questions with accents, here's mine:) SQLite allows you to make direct comparisons or through like with any encoding / charset from byte to . It only allows comparisons to be made regardless of case...
asked by 09.01.2014 / 14:01
2
answers

functions and methods in PHP are case-insensitive?

Some time ago, due to an accident at the time of a debug I realized that PHP is not case sensitive at the time of a function call. Example: print_r($teste); print_R($teste); Print_R($teste); The same thing happens for the methods of...
asked by 11.02.2015 / 15:24
2
answers

How do I make "Replace" replace all occurrences of a word regardless of case?

The Replace function replaces all occurrences of a word or expression, but is case sensitive: string str = "Hello WorLLd";//Substitui só os 'l' e não o 'L' str = str.Replace("l", "EL"); Console.WriteLine("My string: " + str); Output:...
asked by 11.09.2014 / 23:16
2
answers

SQL LIKE is Case Sensitive?

When I had this doubt, I did not find quick results in Portuguese that offered a response (most of the results are in StackOverflow in English). It would be interesting to have an objective answer here in Portuguese to help the community....
asked by 23.03.2017 / 16:46
2
answers

Make comparison using String.Contains () disregarding casing

I need to check if a term exists inside a string (in SQL it is something like like '%termo%' ). The point is that I need to do this without considering the casing of the two strings . How can I do this? Is there something nat...
asked by 24.01.2017 / 16:27
2
answers

Search with case insensitive

Hello, I have a search field but I need it to return the values regardless of toLowerCase() and toUpperCase() Ex Ball, I can search as ball or BALL I have the following line of code: function filterMaterialList(quer...
asked by 23.10.2018 / 19:17
1
answer

Why, in PHP, are some predefined constants case-insensitive?

Because in PHP , some predefined constants are case-insensitive (they are not case sensitive) and some are not? Example 1: echo __FILE__; // index.php echo __file__; // index.php echo __fiLE__; // index.php Example 2: ec...
asked by 15.07.2015 / 16:29
2
answers

Case Insensitive - Jquery Search System

Good morning! I have this code that does the search within a <ul> <li> list: $(function(){ $('input[type="text"]').keyup(function(){ var searchText = $(this).val(); $('.filter-task > li')...
asked by 02.09.2016 / 15:05