An operation is case insensitive when uppercase and lowercase characters are equally treated.
I have the following code: ContactList = ContactList.FindAll(p => p.DeptName.StartsWith(optAlpha.SelectedItem.Value)).ToList(); If DeptName="test" …
c# linq case-insensitiveThere is a certain object I have where the exact case of the properties is not known ahead of time. …
javascript dictionary case-insensitiveI 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-insensitiveI am doing a gsub to swap "bad" for "good". Is there a way to use capitalize so it will …
ruby regex case-insensitiveI have a query created with Hibernate Criteria like this: Criteria criteria = db.getSession().createCriteria(Vendor.class); criteria.addOrder(Property.…
java hibernate sorting criteria case-insensitiveI'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-insensitiveHow 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-insensitiveI have the following code: explode("delimiter", $snippet); But I want that my delimiter is case-insensitive.
php string explode case-insensitiveHow can I use str_ireplace (or something similar) to replace some text for formatting and then return it with …
php match case-insensitive replaceI have a model that has two fields, which I will call first_name and last_name, and I want …
ruby-on-rails scope case-insensitive validates-uniqueness-of