Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

206
votes
10answers
42k views

Case insensitive contains(string)

Is there a way to make the following return true? string title = "ASTRINGTOTEST"; title.Contains("string"); There doesn't seem to be an overload that allows me to set the case sensitivity.. ...
34
votes
9answers
3k views

Is VB Really Case Insensitive?

I'm not trying to start an argument here, but for whatever reason it's typically stated that VB is case insensitive and C languages aren't (and somehow that is a good thing). But here's my question: ...
28
votes
7answers
32k views

How do I do a case insensitive string comparison in Python?

What's the best way to do case insensitive string comparison in Python? I would like to encapsulate comparison of a regular strings to a repository string using in a very simple and pythonic way. I ...
25
votes
5answers
15k views

How to set Sqlite3 to be case insensitive when string comparing?

I want to select records from sqlite3 database by string matching. But if I use '=' in the where clause, I found that sqlite3 is case sensitive. Can anyone tell me how to use string comparing ...
24
votes
16answers
23k views

Ignore case in Python strings

What is the easiest way to compare strings in Python, ignoring case? Of course one can do (str1.lower() <= str2.lower()), etc., but this created two additional temporary strings (with the obvious ...
23
votes
10answers
9k views

Is there a C# case insensitive equals operator?

I know that the following is case sensitive: if (StringA == StringB) { So is there an operator which will compare two strings in an insensitive manner?
19
votes
5answers
26k views

JavaScript: case-insensitive search

I'm trying to get a case-insensitive Search with two String in JavaScript working. Normally it would be like this: var string="Stackoverflow is the BEST"; var result= string.search(/best/i); ...
18
votes
2answers
2k views

Why are functions and methods in PHP case-insensitive?

Functions and methods in PHP are case-insensitive as illustrated in the following example. function ag() { echo '2'; } Ag(); class test { function clMe() { echo 'hi'; } } ...
18
votes
7answers
5k views

Is there a good way to have a Map<String, ?> get and put ignore case?

Is there a good way to have a Map get and put ignore case?
17
votes
4answers
4k views

Python Case Insensitive Replace

What's the easiest way to do a case-insensitive str.replace in Python?
16
votes
8answers
587 views

What is the purpose of case sensitivity in languages? [closed]

Possible Duplicates: Is there any advantage of being a case-sensitive programming language? Why are many languages case sensitive? Something I have always wondered, is why are languages ...
15
votes
1answer
11k views

Case insensitive Python regular expression without re.compile

In Python, I can compile a regular expression to be case-insensitive using re.compile: >>> s = 'TeSt' >>> casesensitive = re.compile('test') >>> ignorecase = ...
14
votes
2answers
5k views

How do I make jQuery Contains case insensitive?

I'm trying to use "contains" case insensitively. I tried using the solution at the following stackoverflow question, but it didn't work: ...
12
votes
7answers
6k views

Case-insensitive search in Rails model

My product model contains some items Product.first => #<Product id: 10, name: "Blue jeans" > I'm now importing some product parameters from another dataset, but there are inconsistencies ...
12
votes
5answers
4k views

MongoDB: Is it possible to make a case-insensitive query?

Example: > db.stuff.save({"foo":"bar"}); > db.stuff.find({"foo":"bar"}).count(); 1 > db.stuff.find({"foo":"BAR"}).count(); 0
9
votes
5answers
416 views

C# Comparing strings with different case

I'm reading a username and then checking to see if exists in another database table, the problem is whilst the username is the same the case maybe different and is preventing it from finding a match ...
8
votes
3answers
453 views

Case Insensitive Pattern Matching over String Lists

I'm trying to parse command line arguments in an F# application. I'm using pattern matching over parameters list to accomplish it. Something like: let rec parseCmdLnArgs = function | [] -> { ...
8
votes
4answers
3k views

Can SVN handle case sensitivity issues?

Is there a way to force SVN to be case insensitive? We have an issue where a user commits from a linux environment with files say "file.ext" and "File.ext". Works just fine. The problem, however, ...
8
votes
5answers
7k views

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") should return "<b>foo</b>bar <b>Foo</b> ...
7
votes
3answers
162 views

Case-Insensitive STL Containers (e.g. std::unordered_set)

What is the shortest, most cross-platform way to make a std::unordered_set CASE-INSENSITIVE container? my_set.insert("Apples"); my_set.insert("apples"); //Insert doesn't occur because of duplicate ...
7
votes
4answers
2k views

Can PHP's glob() be made to find files in a case insensitive manner?

I want all CSV files in a directory, so I use glob('my/dir/*.CSV') This however doesn't find files with a lowercase CSV extension. I could use glob('my/dir/*.{CSV,csv}', GLOB_BRACE); But is ...
7
votes
5answers
769 views

.NET How to compare two Strings that represent filenames ignoring case correctly

Given that (at least on NTFS) the filesystem on Windows is case insensitive, I would like to compare String fileA to String fileB as such: fileA.Equals(fileB, ...
7
votes
4answers
3k views

Java: Collection RemoveAll Ignoring Case?

Ok so here is my issue. I have to HashSet's, I use the Removeall method to delete values that exist in one set from the other. Prior to calling the method, I obviously add the values to the Sets. I ...
7
votes
4answers
4k views

How to change the collation of sqlite3 database to sort case insensitively?

I have a query for sqlite3 database which provides the sorted data. The data are sorted on the basis of a column which is a varchar column "Name". Now when I do the query select * from tableNames ...
6
votes
2answers
68 views

How to make a CaseInsensitiveConcurrentMap?

How can I implement class CaseInsensitiveConcurrentMap<V> implements ConcurrentMap<String , V> which works just like ConcurrentHashMap<String , V> except that the keys are ...
6
votes
1answer
492 views

git merge: filter files to avoid silly conflicts (like whitespace or case changes)

I'm currently inside a very complicated merge in git, and I have many conflicts. The conflict is about two Ada source files. I would like to make a merge that would ignore both whitespace changes and ...
6
votes
5answers
428 views

Case insensitive 'in' - Python

I love using the expression if 'MICHAEL89' in USERNAMES: ... where USERNAMES is a list Is there any way to match items with case insensitivity or do I need to use a custom method? Just ...
6
votes
5answers
3k views

Case insensitive std::string.find()

I am using std::string's find() method to test if a string is a substring of another. Now I need case insensitive version of the same thing. For string comparison I can always turn to stricmp() but ...
6
votes
4answers
3k views

Using Hashtables/Dictionaries with string keys & Case Insensitive Searching

Wondering if this is possible. We have an 3rd Party library that contains identification information about users... The main interaction with the library is through a HashTable which is keyed with a ...
5
votes
6answers
1k views

Make ArrayList element case-insensitive

In my Java application i need to compare two list's element whether it is similar or not. In short suppose i have two list declared like shown below List<String> a = new ...
5
votes
1answer
2k views

Rails validates_uniqueness_of across multiple columns with case insensitivity

I have a model that has two fields, which I will call first_name and last_name, and I want to make sure that the combination of the two are case-insensitively unique. I've gotten halfway there by ...
5
votes
8answers
537 views

May I safely treat email addresses lower case?

In theory emails are case sensitive. But using emails as system login I want them to be all lower case (i.e. john@smith.com and John@smith.com cannot be different users). Can this be a problem for ...
4
votes
2answers
131 views

How can Python regex ignore case inside a part of a pattern but not the entire expression?

Say I have a string containing foobar fooBAR FOObar FOOBAR, and I want to search all instances containing a case insensitive "foo" or "FOO" but a lowercase "bar". In this case, re.findall should ...
4
votes
4answers
3k views

Make Oracle SQL LIKE query case insensitive

SQL query for LIKE is case-sensitive. Is it possible make it case-insensitive?
4
votes
2answers
856 views

Case-insensitive Query

I have some ticket numbers that may have numbers and letters mixed. I'll be passing in the ticketNumberIds into this method (user input) and I want it to query against the Oracle database and have the ...
4
votes
3answers
861 views

MongoDB, c#: Case insensitive search

In my project i am using mongodb and c# driver for mongodb. Recently i found that all search im mongodb case sensetive, but i need insensitive search. So, can anyone help? Thanks a lot. I found ...
4
votes
1answer
306 views

PHP: Case-insensitive parameters

How do I accept passed GET or POST values case insensitively? Like sample.php?OrderBy=asc will still be the same as sample.php?orderby=asc or sample.php?ORDERBY=asc Is there a means of achieving the ...
4
votes
1answer
122 views

Case sensitive and insensitive in the same pattern

thanks to the help with my previous homework question Regex to match tags like <A>, <BB>, <CCC> but not <ABC>, but now i have another homework question. i need to match tags ...
4
votes
3answers
1k views

How to do case-insensitive order in Rails with postgresql

I am in the process of switching my development environment from sqlite3 to postgresql 8.4 and have one last hurdle. In my original I had the following line in a helper method; result = ...
4
votes
4answers
163 views

Dictionary<string,T>(StringComparer) vs Dictionary<string,T> and storing key.ToUpper : Which one should you prefer?

Disclaimer: Maybe be micro-YAGNI-optimizing but hear me out .. The problem is to implement a case-insensitive lookup table. My old-skool way: While populating the dictionary, upper-case the key ...
4
votes
4answers
247 views

Why can't I define a case-insensitve Dictionary in C#?

This C#/WPF code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using ...
4
votes
5answers
1k views

Rails Routes - How to make them case insensitive?

Routes in Ruby on Rails are case sensitive. It seems someone brought this up before, and it has been labeled will not fix. ...
4
votes
3answers
504 views

gcc ignore casing of symbol names while linking

A software I am working on ships with NETLIB BLAS/LAPACK embedded into its sources using all-lowercase symbol names but now while porting the application to windows I discovered that Intel MKL and ...
4
votes
2answers
286 views

What locale should I use for case-insensitive queries from Java?

The classic way to query an SQL database case-insensitively from Java is as follows: String name = ...; // get the user's input (case is unknown) String sql = "select * from Person where lower(name) ...
4
votes
2answers
2k views

Using sed to delete a case insensitive matched line

How do I match a case insensitive regex and delete it at the same time I read that to get case insensitive matches, use the flag "i" sed -e "/pattern/replace/i" filepath and to delete use d sed -e ...
4
votes
2answers
320 views

Case fold UTF-8 without knowing the language

I'm trying to evaluate different strategies for case insensitive UTF-8 string comparison. I've read some material from the Unicode consortium, experimented with ICU and tried to come up with various ...
4
votes
5answers
6k views

Is php not case sensitive?

I am using mysql and php. In my database I have this table called users, inside users table have a record: username: admin password: password In my login page, I tried login as (password: ...
4
votes
2answers
412 views

How to recover from git-svn putting a different cased dulplicate file in the repository?

Git-svn allowed for a duplicate filename, just with different case, to be added to our subversion repository. On Windows this meant that subversion could not checkout the file, complaining of a ...
4
votes
3answers
1k views

case-insensitive regular expressions

What's the best way to use regular expressions with options (flags) in Haskell I use Text.Regex.PCRE The documentation lists a few interesting options like compCaseless, compUTF8, ... But I don't ...
4
votes
5answers
2k views

case insensetive order by in SQLite in .net

I'm using SQLite from a C# program using SQLite.net ( http://sqlite.phxsoftware.com ). By default SQLite select order by clause sort is case sensitive, I want the result to sort case insensitive, I ...

1 2 3 4 5