D
D. Roshani
Hello !
I wonder if any one can help me to create a cosomize sorting order (as Macro or added small program
in c++ or c# which does this work) in a Access Database contaning one table only words encoded in
ISO-8859-1
A a B b C c D d E e É é F f G g H h I i Í í J j
1 2 3 4 5 6 7 8 9 10 11 12
Jh jh K k L l ll M m N n O o P p Q q R r rr S s
13 14 15 16 17 18 19 20 21 22 23 24
Sh sh T t U u Ú ú Ù ù V v W w X x Y y Z z
25 26 27 28 29 30 31 32 33 34
There some unique cases in this alphabet that has to be considered while sorting.
a. Letters with diacritical (é, í, ú, ù). The Unicode numbers for these letters are:
I. Lower cases: (é – [U+00E9], [é]), (í – [U+00ED], [í]), (ú – [U+00DA], [ú]), (ù –
[U+00F9], [ù])
II. Upper cases: (É – [U+00C9], [É]), (Í – [U+00CD], [Í]), (Ú – [U+00DA], [Ú]), (Ù –
[U+00F9], [Ù])
b. Combined letters which have to be treated as on single letter like (Jh initial case), (jh,
non-initial case), (ll, only non-initial case), (rr, only non-initial case) (Sh initial case) and
(sh, non-initial case),
c. The positions of the letters are marked from 1 to 34 starts from top left to right. This will
help to sort the words according to Kurdish Unified Alphabet. The sorting system needs to consider
the rank of level of priority to place cases in a and b in correct alphabetic position.
Thank you Dilan
I wonder if any one can help me to create a cosomize sorting order (as Macro or added small program
in c++ or c# which does this work) in a Access Database contaning one table only words encoded in
ISO-8859-1
A a B b C c D d E e É é F f G g H h I i Í í J j
1 2 3 4 5 6 7 8 9 10 11 12
Jh jh K k L l ll M m N n O o P p Q q R r rr S s
13 14 15 16 17 18 19 20 21 22 23 24
Sh sh T t U u Ú ú Ù ù V v W w X x Y y Z z
25 26 27 28 29 30 31 32 33 34
There some unique cases in this alphabet that has to be considered while sorting.
a. Letters with diacritical (é, í, ú, ù). The Unicode numbers for these letters are:
I. Lower cases: (é – [U+00E9], [é]), (í – [U+00ED], [í]), (ú – [U+00DA], [ú]), (ù –
[U+00F9], [ù])
II. Upper cases: (É – [U+00C9], [É]), (Í – [U+00CD], [Í]), (Ú – [U+00DA], [Ú]), (Ù –
[U+00F9], [Ù])
b. Combined letters which have to be treated as on single letter like (Jh initial case), (jh,
non-initial case), (ll, only non-initial case), (rr, only non-initial case) (Sh initial case) and
(sh, non-initial case),
c. The positions of the letters are marked from 1 to 34 starts from top left to right. This will
help to sort the words according to Kurdish Unified Alphabet. The sorting system needs to consider
the rank of level of priority to place cases in a and b in correct alphabetic position.
Thank you Dilan