Top "Case-insensitive" questions

An operation is case insensitive when uppercase and lowercase characters are equally treated.

How to change spaces to underscore and make string case insensitive?

I have following question. In my app there is a listview. I get itemname from listview and transfer it to …

java android string case-insensitive replaceall
How do you do a case insensitive search using a pattern modifier using less?

It seems like the only way to do this is to pass the -i parameter in when you initially run …

unix search case-insensitive less-unix
Case insensitive string comparison

I would like to compare two variables to see if they are the same, but I want this comparison to …

php if-statement case-insensitive
SQL SELECT LIKE (Insensitive casing)

I am trying to execute the sql query: select * from table where column like '%value%'; But the data …

mysql sql sql-like case-insensitive
Case insensitive search in Mongo

I am using a case insensitive search in Mongo, something similar to https://stackoverflow.com/q/5500823/1028488. ie I am using …

regex mongodb pattern-matching match case-insensitive
Case-insensitive search and replace with sed

I'm trying to use SED to extract text from a log file. I can do a search-and-replace without too much …

macos replace sed case-insensitive
case-insensitive list sorting, without lowercasing the result?

I have a list of strings like this: ['Aden', 'abel'] I want to sort the items, case-insensitive. So I want …

python string list sorting case-insensitive
mod_rewrite RewriteCond - is NC flag necessary for just domain part? And some more

I have seen many times in htaccess these type of rules : RewriteCond %{HTTP_REFERER} !^http://www.domain.it$ [NC] or …

regex .htaccess mod-rewrite case-insensitive
Case insensitive string replacement in JavaScript?

I need to highlight, case insensitively, given keywords in a JavaScript string. For example: highlight("foobar Foo bar FOO", "foo") …

javascript string replace case-insensitive
How do I ignore case when using startsWith and endsWith in Java?

Here's my code: public static void rightSel(Scanner scanner,char t) { /*if (!stopping)*/System.out.print(": "); if (scanner.hasNextLine()) { String …

java string case-insensitive startswith ends-with