An operation is case sensitive when uppercase and lowercase characters are treated differently.

learn more… | top users | synonyms (1)

4
votes
2answers
75 views

Determine if a string starts with an upper-case character in Perl

I need to make a subroutine in Perl which determines if a string starts with an upper-case character. What I have so far is the following: sub checkCase { if ($_[0] =~ /^[A-Z]/) { return ...
1
vote
2answers
33 views

MySQL: Is it safe to lowercase or uppercase regular expression?

I use regular expressions in MySQL on multibyte-encoded (utf-8) data, but I need it to be match case-insensitively. As MySQL has bug (for many years unresolved) that it can't deal properly with ...
0
votes
1answer
15 views

The database is case sensitive in unique constraints but not in select

I have a SQL Server 2008 R2 Express and in the installation wizard I select the collation Modern_Spanish_CS_AS. When I create a new database if I go to the properties of the database, I can see that ...
0
votes
1answer
33 views

why is not case sensitive if I have a collation that is set as CS?

I have installed SQL Server Express 2008 R2 and in the installation I set the collation to Modern_Spanish_CS_AS. In SQL Server Management Studio I can see that the server has this collation and my ...
0
votes
2answers
30 views

FindFirstFileEx doesn't operate case sensitive

Since I'm using a macro which seems to work if the given path is case unequal to the local path on the drive I first need to validate wether the path is case-wise existing or not. Unfortunately (in my ...
1
vote
1answer
25 views

Highlight menu by querystring ignore case sensitive

I use jquery to highlight my menu. And here is my html look like <div id="menu"> <div class="item"><a href="?product=abc">ABC</a></div> <div ...
2
votes
1answer
38 views

How to map path to correct casing of the underlying location for svn use

Say that I have the path C:\My\Multi\Component\Path. Because casing is generally ignored in Windows I could mix and match any casing I please to navigate to this same node in the file system in ...
0
votes
1answer
35 views

Case insensitive varchar SQL Sybase

I create a simple table Company, which has two fields - ID and Name. CREATE TABLE Company ( ID int PRIMARY KEY, Name VARCHAR(20) ) By default in Sybase VARCHAR is case sensitive, but how may I ...
0
votes
2answers
47 views

rename folders with case-sensitive names

I want to rename folder with case-sensitive option. for example: mv "foldername1" "foldername2" an error occuring in this command, because name of my folder isn't "foldername1", it is ...
0
votes
1answer
103 views

Case sensitive Directory.Exists / File.Exists

Is there a way to have a case sensitive Directory.Exists / File.Existssince Directory.Exists(folderPath) and Directory.Exists(folderPath.ToLower()) both return true? Most of the time it doesn't ...
0
votes
2answers
34 views

Windows case sensitivity causing trouble, Can't include a Java project to Eclipse

so I decompiled one of my jars, and in the nature of decompilers, it named the classes from a to z. After one cycle it started naming them the same again, but with captioned letters, so I might end up ...
2
votes
1answer
59 views

python - checking a file exists (ignore case)

I have a python script and I want to check if a file exists, but I want to ignore case eg. path = '/Path/To/File.log' if os.path.isfile(path): return true The directory may look like this ...
0
votes
1answer
67 views

SqlContainer Filter case sensitive Vaadin

I am new to Vaadin and have been trying to use the SqlContainer. I have managed to get mysql database connection working. Here is the connection and the container code: import java.io.Serializable; ...
0
votes
3answers
52 views

How do I make a .toLowerCase work in this particular case.. Seems not to work at all

So i've always been having problems with .toLowerCase and I've checked loads of articles, Videos and books on how it works. I tried making a silly game as a joke for my friends and obviously this wont ...
0
votes
1answer
12 views

How to change SUA from case-insensitive to case-sensitive

I have mistaken of unmarking the 'case-sensitive' checkbox when installing the Subsystem for Unix-based Applications (SUA). Now when I try to install 'Add-on Bundles from Interop Systems' on this ...
0
votes
1answer
77 views

In Javascript, How to detect the character case (upper/lower) in keydown & keyup events?

I need to detect the case of characters in event keydown and keyup Here's the code: $('body').keydown( function(event) { var charCode = (event.which) ? event.which : event.keyCode; ...
2
votes
1answer
62 views

How to solve case insensitive conflict name in COM while I using a case sensitive language

This question is an extension of this article. In the same case, I created a instance of WMP ActiveX by its ProgID. protected const string WMP_PROG_ID = "WMPlayer.OCX.7"; private dynamic _wmp; ...
1
vote
0answers
27 views

git conflict with differently cased directory name

I am using msysgit 1.8.1, and I am running into an issue with directory casing. I have the core.ignorecase set to true. But I have a case where git seems to have the folder under two different ...
0
votes
2answers
46 views

MySql case sensitivity for primary key

Are MySQL primary key values case sensitive? If it's an option how do I set it? I want the table to be able to store "www.Example.com" and "www.example.com" as different values.
0
votes
1answer
35 views

Zend Controller Name Case Sensitivity

I'm using the Zend Framework to develop an application on a linux host, and for some reason when I try to go to localhost/index it gives me what looks like a standard Apache 404 error. But when I go ...
2
votes
1answer
40 views

What's the correct casing to use for jsDoc comments?

I've recently started using jsdoc comments for documenting our javascript code, however I'm finding conflicting examples of the usage of the @param tag. See ...
5
votes
2answers
125 views

Git on windows: Can't switch branch after renaming a file (only changed case)

I'm working with git on windows, and I have a file in my repo, lets say "foo.txt". Today I wanted to rename this file to "Foo.txt" (uppercase). As suggested in this SO question, I used git mv -f ...
0
votes
3answers
78 views

StreamReader case sensitive

My program currently reads a text file and compares it with the value in a text box and then tells me how many matches, this currently works. My query is that it is case sensitive. Is there any way ...
0
votes
2answers
115 views

Case sensitive and insensitive like in Sqlite

In Sqlite it is possible to change the case sensitive behaviour of 'LIKE' by using the commands: PRAGMA case_sensitive_like=ON; PRAGMA case_sensitive_like=OFF; However in my situation I would like ...
1
vote
0answers
69 views

ASP.NET Request.Form case-sensitivity

I have some C# code that retrieves the value of Request.Form["KeyName"], however, the code that is submitting the request is passing keyName=value. This works in our dev/stage environment, but not in ...
0
votes
1answer
128 views

Disable case sensitive with autocomplete

I have a doubt about jQuery autocomplete. When I write something in the field like "LI" I need autocomplete returns all the words that starts with "LI" (the words that is in lowercase and uppercase). ...
0
votes
1answer
54 views

JS id case sensitivity acting out

I am working on a website that contains two elements with the same "id" (but different case) ie "freeshipping" versus "freeShipping". When I try to select the freeShipping element in JS, the browser ...
1
vote
2answers
118 views

Getting Image from the server while ignoring the file's case sensitivity

How can i make my code to get image "_filename.JPG" not only "_filename.jpg"? string picUrl = "http://MyServer/" + _filename + ".jpg"; Image webImage = ...
0
votes
1answer
44 views

Mezzanine search engine

I use Mezzanine CMS. It has {% search_form "app.model" %} template tag, it works fine, but it case-sensitive search. How can I make case-insensitive search?
0
votes
0answers
398 views

How to decompile and recompile using jars in eclipse?

I'm new to Eclipse, and I can't figure out how to edit and recompile Java files. I have a little game not made by me. I decompiled some .jar files and I found interesting stuff. I made a working ...
0
votes
1answer
50 views

Google Chrome Changes elements to lowercase

I have a HTML file like this: <html> <head> <title>Test</title> <script language="javascript"> function removeElements() { alert( ...
3
votes
1answer
100 views

How can I read, write and check case-insensitive filenames in iOS?

I understand that iOS filenames are case-sensitive while OSX filenames can be case-insensitive. Apple's iCloud design guide says: "To make your document file format cross-platform compatible, you ...
0
votes
1answer
64 views

Trouble with Magento Module name in Parallel plesk. Issue seems like with Case sensitivity

I am having a trouble with my Magento module name in parallel Plesk. My module's name is like ComPany/MYMODULE and it works fine in localhost. But i uploaded it to a live server in Parallel plesk, ...
1
vote
2answers
73 views

In a Django URL, what is the regular expression so that “foo.com/Bar” is the same as “foo.com/bar”

My problem is people keep linking to example.com/FooBar but the actual link is example.com/foobar. My current regex is... SLUG = '(?P<slug>[\w\d-]+)' I hope that makes sense. I was surprised ...
0
votes
0answers
118 views

Resolve “undefined table” error in Yii

I've just moved my site from developing on my mac with sqlite to putting it on a shared host running linux with postgres. The static pages display fine, but as soon as I display anything dynamic, I ...
1
vote
1answer
134 views

git case sensitive troubles

I have never used git on Windows before and am faced with a case-sensitive filename problem. Scenario: git init in empty folder check that .git\config contain ignorecase = true line create file ...
2
votes
2answers
83 views

How a Boolean method should not return for case sensitive c#

I have a Boolean function which checks the names from database, If any name exists in database which returns true. my function is public bool rawMtrlExists(string strRawMtrl) { var ...
0
votes
1answer
48 views

Will changing my Github username to SnakeCase break anything?

So I read How to safely change github account name? But if I just change my username from stevemoser to SteveMoser that shouldn't break any of my repos right? Or is git case sensitive?
0
votes
1answer
127 views

lucene filter case sensitive

I'm migrating from lucene 3.0.1 to 4.1.0. After few days of analysis I suppose there is a differenc in filtering of queries result in these versions. After migration I see difference in query result ...
0
votes
1answer
124 views

First letter capitalisation with multiple cursors in sublime

In sublime if I use cmd+D to select every occurrence of 'old' the selection is case insensitive so will match old and camelOld. But when I start typing the capitalisation is not respected so i will ...
1
vote
2answers
193 views

mySQL “select” is case sensitive through JDBC but not through command line

I am trying to search my database using mySQL through JDBC. When I use this statement: SELECT * FROM tablename WHERE name='joe'; It does a case insensitive search and returns any rows that have ...
0
votes
1answer
62 views

How can I perform an equivalent of php str_replace in JavaScript?

How can I perform a case-sensitive string replacement in JavaScript? I am looking for something similar to PHP's str_replace. var text = "this IS some sample text that is going to be replaced"; var ...
0
votes
4answers
86 views

jquery can't get the value from an input element

I am using jquery trying to retrieve the value of a text input but it is not working. can anyone see what I am doing wrong? http://jsfiddle.net/silvajeff/rJNLr/ <input id="mytest2" ...
-1
votes
1answer
148 views

Why underline is usually used in the sql table names rather than camel case [closed]

In all the applications/examples I have already seen(eg. wordpress). The column table names use underline rather than camel case. I'd like to know if there are some technical incompatibility problems ...
0
votes
0answers
95 views

How can I make Node.js require files ignoring case even on case-sensitive file systems?

I want to use a library (rtf), but that library requires files with different casing than the actual filenames; the file is called align.js but is required as Align. Is there a way to tell Node.js to ...
2
votes
2answers
96 views

How do you force mysql LIKE be case sensitive? [duplicate]

Possible Duplicate: Mysql Like Case Sensitive Mysql ignores case for its LIKE comparisons. How can you force it to perform case-sensitive LIKE comparisons?
1
vote
0answers
49 views

How will Windows react to two folders that differ only in letter case? [closed]

How will Windows react when it's asked to navigate into a folder that contains two folders that differ only in letter case? For example, let's say I do this, on Linux: mkdir Folder cd Folder mkdir ...
2
votes
2answers
130 views

Case Sensitive Dictionary Keys

I've found plenty of info on the web about making dictionaries able to do case insensitive look-ups such that if I added a key/value pair of ("A", "value") calling MyDict["a"] == MyDict["A"] will ...
1
vote
3answers
143 views

SQL: Select distinct - without highcase/lowcase duplicate

My query: SELECT distinct [ID], [IDGROUP], [DESCRIPTION] FROM table My result problem: 1, 1, Hello 1, 1, hello How can I set a filter where I do not select duplicates where the difference is ...
0
votes
2answers
47 views

Double ask for input if wrong input is given

My functions: //Check Character Case(Upper/Lower Case). If Upper Convert to Lower Case. char checkLetterCase(char letter){ if(letter >= 65 && letter <= 90){ letter = ...

1 2 3 4 5 10