Top "Case-insensitive" questions

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

How to ignore case sensitivity in StartsWith for LINQ FindAll?

I have the following code: ContactList = ContactList.FindAll(p => p.DeptName.StartsWith(optAlpha.SelectedItem.Value)).ToList(); If DeptName="test" …

c# linq case-insensitive
Is there an efficient way to do a case-insensitive JavaScript object property name lookup?

There is a certain object I have where the exact case of the properties is not known ahead of time. …

javascript dictionary case-insensitive
SelectNodes with XPath ignoring cases

I have a problem finding elements in XPath that's contains a certain string ignoring character casing. I want to find …

c# xpath html-agility-pack case-insensitive
Is it possible to do a case-insensitive `gsub`?

I am doing a gsub to swap "bad" for "good". Is there a way to use capitalize so it will …

ruby regex case-insensitive
Case-insensitive ordering using Hibernate Criteria

I have a query created with Hibernate Criteria like this: Criteria criteria = db.getSession().createCriteria(Vendor.class); criteria.addOrder(Property.…

java hibernate sorting criteria case-insensitive
Changing Filename Case with TortoiseSVN on Windows

I've been working on a development project using a Windows machine as a test server. Eventually, I'd like the "live" …

windows tortoisesvn case-sensitive case-insensitive
How to compare strings with case insensitive and accent insensitive

How to compare strings with case insensitive and accent insensitive Alright this is done easily at SQL server However I …

c# .net string-comparison case-insensitive accent-insensitive
PHP case-insensitive explode()

I have the following code: explode("delimiter", $snippet); But I want that my delimiter is case-insensitive.

php string explode case-insensitive
str_ireplace() with keeping of case

How can I use str_ireplace (or something similar) to replace some text for formatting and then return it with …

php match case-insensitive replace