ce3605da2a
* must use record.abs * sort-string.cfg => sort-string-utf.chr
48 lines
886 B
Text
48 lines
886 B
Text
# Generic character map.
|
|
#
|
|
# $Id: string.chr,v 1.4 1999/09/07 07:19:21 adam Exp $
|
|
|
|
# Define the basic value-set. *Beware* of changing this without re-indexing
|
|
# your databases.
|
|
lowercase {0-9}{a-y}üzæäøöå
|
|
uppercase {0-9}{A-Y}ÜZÆÄØÖÅ
|
|
|
|
# Breaking characters
|
|
|
|
space {\001-\040}!"#$%&'\()*+,-./:;<=>?@\[\\]^_`\{|}~
|
|
|
|
# Characters to be considered equivalent for searching purposes.
|
|
|
|
# equivalent æä(ae)
|
|
# equivalent øö(oe)
|
|
# equivalent å(aa)
|
|
# equivalent uü
|
|
|
|
# Supplemental mappings
|
|
|
|
#map (ä) ä
|
|
#map (æ) æ
|
|
#map (ø) ø
|
|
#map (å) å
|
|
#map (ö) ö
|
|
#map (Ä) Ä
|
|
#map (&Aelig;) Æ
|
|
#map (Ø) Ø
|
|
#map (Å) Å
|
|
#map (Ö) Ö
|
|
|
|
#map éÉ e
|
|
#map á a
|
|
#map ó o
|
|
#map í i
|
|
|
|
#map (Aa) (AA)
|
|
|
|
#map (aa) a
|
|
map (^The\s) @
|
|
map (^the\s) @
|
|
map (^a\s) @
|
|
map (^A\s) @
|
|
map (^An\s) @
|
|
map (^an\s) @
|
|
|