pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/p5-Unicode-CaseFold
Module Name: pkgsrc
Committed By: mef
Date: Sun May 10 02:24:03 UTC 2015
Added Files:
pkgsrc/textproc/p5-Unicode-CaseFold: DESCR Makefile distinfo
Log Message:
Import p5-Unicode-CaseFold-1.00 as textproc/p5-Unicode-CaseFold.
What is Case-Folding?
In non-Unicode contexts, a common idiom to compare two strings
case-insensitively is lc($this) eq lc($that). Before comparing two strings
we normalize them to an all-lowercase version. "Hello", "HELLO", and
"HeLlO" all have the same lowercase form ("hello"), so it doesn't matter
which one we start with; they are all equal to one another after lc.
In Unicode, things aren't so simple. A Unicode character might have
mappings for uppercase, lowercase, and titlecase, and the lowercase mapping
of the uppercase mapping of a given character might not be the character
that you started with! For example lc(uc("\N{LATIN SMALL LETTER SHARP S"))
is "ss", not the eszett we started off with! Case-folding is a part of the
Unicode standard that allows any two strings that differ from one another
only by case to map to the same "case-folded" form, even when those strings
include characters with complex case-mappings.
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/p5-Unicode-CaseFold/DESCR \
pkgsrc/textproc/p5-Unicode-CaseFold/Makefile \
pkgsrc/textproc/p5-Unicode-CaseFold/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index