Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

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: ...
32
votes
12answers
36k views

Is SQL syntax case sensitive?

Is SQL case sensitive. I've used MySQL and SQL Server which both seem to be case in-sensitive. Is this always the case? Does the standard define case-sensitivity?
28
votes
26answers
2k views

Why are many languages case sensitive?

Why are many languages case sensitive? Is it simply a matter of inheritance? C++ is case-sensitive because C is, Java is case-sensitive because C++ is, etc.? Or is there a more pragmatic reason ...
21
votes
4answers
2k views

git mv and only change case of directory

While I found similar question I didn't find an answer to my problem When I try to rename the directory from FOO to foo via git mv FOO foo I get fatal: renaming 'FOO' failed: Invalid argument ...
20
votes
8answers
21k views

Case-insensitive search using Hibernate

I'm using Hibernate for ORM of my Java app to an Oracle database (not that the database vendor matters, we may switch to another database one day), and I want to retrieve objects from the database ...
18
votes
7answers
4k views

Case conventions on element names?

Are there any formal recommendations on element casing in XML? I know XHTML uses lowercase element names (as opposed to HTML which canonically uses uppercase but is case-insensitive.) But I'm ...
17
votes
4answers
254 views

Case-inconsistency of PHP file paths on Mac / MAMP?

I'm developing a PHP program on MAMP, and just realized the following screwy behavior: echo "<br/>PATH = ".dirname(__FILE__); include 'include.php'; include.php: <?php echo ...
16
votes
8answers
586 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: ...
13
votes
13answers
631 views

How could these case conversion functions be improved?

As a learning exercise, my three functions—ToggleCase, LowerCase and UpperCase—each expect a pointer to an ASCII char string, terminated by the null character; they work as expected. Are there more ...
10
votes
5answers
1k views

MySQL case sensitive string comparison?

I have a function that returns five characters with mixed case. If I do a query on this string it will return the value regardless of case. How can I make MySQL string queries case sensitive?
10
votes
26answers
1k views

Why do people like case sensitivity?

Just wondering why people like case sensitivity in a programming language? I'm not trying to start a flame war just curious thats all. Personally I have never really liked it because I find my ...
9
votes
2answers
12k views

How do I use jQuery to ignore case when selecting?

I'm currently attempting to disable a link using the following jQuery selector: $("a[href$=/sites/abcd/sectors]").removeAttr("href"); The problem is that sometimes the href might not always be ...
8
votes
5answers
597 views

Why is SQL Server '=' comparator case insensitive?

I just realized that SQL server '=' comparator when used for text comparison is case insensitive. I have a few questions regarding this functionality: Is this the same for all databases or specific ...
8
votes
10answers
7k views

indexOf Case Sensitive?

Is the indexOf(String) method case sensitive? If so, is there a case insensitive version of it?
8
votes
5answers
972 views

Does HTTP hostname case (upper/lower) matter?

In other words, does it matter whether I use http://www.example.com/ or http://wwW.exAmPLe.COm/ ? I've been running into strange issues with host-names lately: I have an Apache2.2+PHP5.1.4 webserver, ...
7
votes
9answers
844 views

How can this method to convert a name to proper case be improved?

I am writing a basic function to convert millions of names, in a one-time batch process, from their current uppercase form to a proper mixed case. I came up with the following function: public ...
7
votes
4answers
358 views

Is the protocol name in URLs case sensitive?

Is "hTTp://foo.com" the same as "Http://foo.COM" ? I know that Hostnames are not sensitive but path names and query parts are sensitive.
7
votes
2answers
767 views

.NET HttpSessionState Case Insensitivity

.NET's HttpSessionState using an "InProc" store seems to treat session variable key values as case insensitive. For example: session["foo"] = 1; session["Foo"] = 2; ...
6
votes
4answers
744 views

Are PHP functions case sensitive?

I was digging through some code, and I found some calls to mySQL_fetch_array. Is PHP case sensitive about function names? I recall reading this somewhere but can't seem to find any reference to it.
6
votes
2answers
363 views

UTF-8 and upper()

I want to transform UTF-8 strings using built-in functions such as upper() and capitalize(). For example: >>> mystring = "işğüı" >>> print mystring.upper() Işğüı # should be İŞĞÜI ...
6
votes
4answers
10k views

Sql Server check case sensitivity?

How can I check to see if an SQL Server is case sensitive? I have previously been running the query: SELECT CASE WHEN 'A' = 'a' THEN 'NOT CASE SENSITIVE' ELSE 'CASE SENSITIVE' END But I am looking ...
6
votes
4answers
894 views

How do I detect whether the file system is case-sensitive?

I have a List<String> of file names from a folder and a certain file name as String. I want to detect whether the file name is in the list, but need to respect the underlying file system's ...
6
votes
4answers
4k views

How can I do Unicode uppercase?

I have this: >>> print 'example' example >>> print 'exámple' exámple >>> print 'exámple'.upper() EXáMPLE What I need to do to print: EXÁMPLE (Where the 'a' gets its ...
5
votes
2answers
105 views

turning off case sensitivity in r

I have some cases where case sensitivity is difficulty. Can we turn off the case sensitivity anyway? A1 <- c("a", "A", "a", "a", "A", "A", "a") B1 <- c(rep("a", length(A1))) > A1==B1 [1] ...
5
votes
1answer
81 views

GetProperty method is case sensitive for VB?

I was debugging one of the applications I work on and came across an interesting issue. For those unfamiliar with VB.NET, variable names are case insensitive. Therefore, Dim foo As Integer FOO = 5 ...
5
votes
2answers
157 views

have jQuery ignore case in attribute/data names?

We're using HTML5's data-* attributes for some of our client side interaction set up. jQuery uses these to do its thing. The catch is that the HTML coming in may vary. Obviously this is the problem ...
5
votes
3answers
619 views

On which operating systems or browsers are CSS font-family names case-sensitive

According to sitepoint (a source I typically highly trust) when specifying font-family names some Operating Systems/Browsers may be case-sensitive. I've typically always used mixed-case values but ...
5
votes
6answers
1k views

PHP array, Are array indexes case sensitive?

I don't know if this is a problem yet but wanted to start thinking about it. Question: "Are PHP array indexes case sensitive"? Example: ...
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 ...
5
votes
7answers
762 views

Best practice for C# Auto-Implemented Property and local variable that differ only by case?

Let me give you an example: public class MyClass { public string MyProperty { get; set; } public MyClass(string myProperty) { MyProperty = myProperty; // bad? ...
5
votes
2answers
6k views

MYSQL case sensitive search for utf8_bin field

I created a table and set the collation to utf8 in order to be able to add a unique index to a field. Now I need to do case insensitive searches, but when I performed some queries with the collate ...
5
votes
4answers
2k views

C# Filepath Recasing

I'm trying to write a static member function in C# or find one in the .NET Framework that will re-case a file path to what the filesystem specifies. Example: string filepath = @"C:\temp.txt"; ...
4
votes
1answer
101 views

How do you tell Emacs to leave the case alone in a search and replace string?

I'm trying to perform a regex search and replace in Emacs (using M-x query-replace-regexp), but the usually helpful smart case is getting in the way. My source is: One Two Three And I want to ...
4
votes
1answer
77 views

UTF8 string comparisons in MySQL

We have issues with utf8-string comparisons in MySQL 5, regarding case and accents : from what I gathered, what MySQL implements collations by considering that "groups of characters should be ...
4
votes
2answers
130 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
1answer
202 views

Are email headers case sensitive?

Are email headers case sensitive? For example, is Content-Type different from Content-type? According to RFC 5322, I don't see anything about case sensitivity. However, I'm seeing a problem with ...
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
227 views

Emacs Case Sensitive Replace String

I just asked a related question (setq question) but it's distinctly different, so I decided to branch off with this question. In my .emacs file, I define a key binding to the replace-string command: ...
4
votes
4answers
1k views

MAC OS X: How to determine if filesystem is case sensitive?

I have used the statfs(2) system call to get many characteristics of a Mac OS X filesystem, but it doesn't tell me if the filesystem is case-sensitive or not. I need this information as the ...
4
votes
2answers
283 views

Character case in HTML tags

What's the rule for character casing in html tags? I have a situation where I need to force no caching on a site of mine. I have been using all lower case for all html tags and attributes (being ...
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
4answers
1k views

UISearch bar case insensitive?

In a table view I have set a UISearchBar, set the delegate, and add the protocol. When user tap a word everything is okay except that the search of "tennis" is different from "Tennis". How can I ...
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
2answers
136 views

Any kind of way of detecting case-sensitve filename errors?

we are making a project to run in ASP.Net on Mono/*nix Our problem is that we develop on Windows, and we just build and test it every so often on Mono. So we have been having a lot of trouble ...
4
votes
8answers
862 views

Why are tags typically all lower case?

Everywhere I look I see that whenever a site implement a tags system, they convert the tags names to lowercase. Even here in StackOverflow. I was thinking about why is it so. Other than preventing ...
4
votes
3answers
4k views

JPA EntityManager find with case sensitive key

I'm trying to use the JPA EntityManager find() method. My primary key is a string which corresponds to a user's name. I am using JPA / Hibernate / MYSQL. My problem is a search for user 'David' ...
4
votes
4answers
2k views

Javascript and why capital letters sometimes work and sometimes don't

In notepad++, I was writing a javascript file, and something didn't work: an alert had to be shown when a button was clicked, but it wasn't working. I has used the auto-complete plugin provided with ...
3
votes
3answers
51 views

I want -e to work case-sensitively on OS X. Is it possible?

I'm developing a script that makes use of the -e flag, as in unless (-e $fileName) { ... } This works fine on OS X. Or, rather, it doesn't work correctly. I want it to be case-insensitive. The ...

1 2 3 4 5 6