Jump to content

Case-insensitive: Difference between revisions

No change in size ,  3 October 2024
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
Line 7: Line 7:
Case sensitivity may differ depending on the situation:
Case sensitivity may differ depending on the situation:


* [[String-searching algorithm|Searching]]: Users expect information retrieval systems to be able to have correct case sensitivity depending on the nature of an operation. Users looking for the word "dog" in an online journal probably do not wish to differentiate between "dog" or "Dog", as this is a writing distinction; the word should be matched whether it appears at the beginning of a sentence or not. On the other hand, users looking for information about a brand name, trademark, human name, or city name may be interested in performing a case-sensitive operation to filter out irrelevant results. For example, somebody searching for the name "Jade" would not want to find references to the mineral called "jade". On the English Wikipedia for example a search for [[friendly fire]] returns the military article but [[Friendly Fire (disambiguation)|Friendly Fire]] (capitalized "Fire") returns the disambiguation page.<ref group=NB>The link "Friendly Fire" must go through the (disambiguation) qualifier in a Wikipedia article to avoid a [[WP:INTDAB]] error.</ref><ref>See [[WP:DIFFCAPS]]</ref>
* [[String-searching algorithm|Searching]]: Users expect information retrieval systems to be able to have correct case sensitivity depending on the nature of an operation. Users looking for the word "dog" in an online journal probably do not wish to differentiate between "dog" or "Dog", as this is a writing distinction; the word should be matched whether it appears at the beginning of a sentence or not. On the other hand, users looking for information about a brand name, trademark, human name, or city name may be interested in performing a case-sensitive operation to filter out irrelevant results. For example, somebody searching for the name "Jade" would not want to find references to the mineral called "jade". On the English Wikipedia for example a search for [[friendly fire]] returns the military article but [[Friendly Fire (disambiguation)|Friendly Fire]] (capitalized "Fire") returns the disambiguation page.<ref group=NB>The link "Friendly Fire" must go through the (disambiguation) qualifier in a Wikipedia article to avoid a [[BP:INTDAB]] error.</ref><ref>See [[BP:DIFFCAPS]]</ref>
* [[Username]]s: Authentication systems usually treat usernames as case-insensitive to make them easier to remember, reducing typing complexity, and eliminate the possibility of both mistakes and [[Impersonator|fraud]] when two usernames are identical in every aspect except the case of one of their letters. However, these systems are not case-blind. They [[case preservation|preserve the case of the characters in the name]] so that users may choose an aesthetically pleasing username combination.
* [[Username]]s: Authentication systems usually treat usernames as case-insensitive to make them easier to remember, reducing typing complexity, and eliminate the possibility of both mistakes and [[Impersonator|fraud]] when two usernames are identical in every aspect except the case of one of their letters. However, these systems are not case-blind. They [[case preservation|preserve the case of the characters in the name]] so that users may choose an aesthetically pleasing username combination.
* [[Password]]s: Authentication systems usually treat passwords as case-sensitive. This enables the users to increase the complexity of their passwords.
* [[Password]]s: Authentication systems usually treat passwords as case-sensitive. This enables the users to increase the complexity of their passwords.