Jump to content

Case sensitivity: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Reverted edits by MahouWolzard (talk) to last version by NuclearWarfare
m Removed "website addresses" from examples, to avoid confusion. See discussion page.
Line 16: Line 16:
*[[command]]s
*[[command]]s
*[[Variable (programming)|variable]] names
*[[Variable (programming)|variable]] names
*[[URL|website addresses]]
*searching for a [[text string]] within electronic text
*searching for a [[text string]] within electronic text



Revision as of 03:35, 3 March 2010

For the Wikipedia policy, see Wikipedia:Case sensitivity.

Text sometimes exhibits case sensitivity; that is, words can differ in meaning based on differing use of uppercase and lowercase letters. Words with capital letters do not always have the same meaning when written with lowercase letters. For example, Bill is the first name of former U.S. president William Clinton, who could sign a bill (which is a proposed law that was approved by Congress). And a Polish person can use polish to clean something. In food, the Calorie, with a capital C, is commonly used to denote 1000 calories of energy.

In computers, some examples of usually case sensitive data are

Some computer languages are case-sensitive (Java, C++, C#, C[1], Ruby[2] and XML). Others are case-insensitive (i.e., not case-sensitive), such as most BASICs (an exception being BBC BASIC and QBASIC), SQL, Pascal and HTML. There are also languages, such as Haskell and Prolog, in which the capitalization of an identifier encodes information about its semantics.

It takes more work for a program to ignore case when comparing data, depending on the data being compared. Usually it suffices in text coded in character sets like ASCII or EBCDIC to merely convert the comparand and the data temporarily to one case and then compare. However, it becomes far more challenging in a multi-lingual environment, e.g., using Unicode, since case-conversion rules differ between some languages.

Case-insensitive operations are sometimes said to fold case, from the idea of folding the character code table so that upper- and lower-case letters coincide. The alternative smash case is more likely to be used by someone that considers this behaviour a misfeature or in cases wherein one case is actually permanently converted to the other.

References

  1. ^ Kernighan, Brian W. (1978). "Chapter 2: Types, Operators and Expressions". The C Programming Language (1st ed.). Englewood Cliffs, NJ: Prentice Hall. p. 33. ISBN 0-13-110163-3. {{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (help); Unknown parameter |month= ignored (help)
  2. ^ Matsumoto, Yukihiro (2002). "Chapter 2: Language Basics". Ruby in a nutshell (1st ed.). O'Reilly Media. p. 9. ISBN 0-596-00214-9. {{cite book}}: Unknown parameter |month= ignored (help)