>> El día lunes, mayo 17, 2021 a las 01:27:40p. m. -, haman...@t-online.de
>> escribió:
>> >> > Hi,
>> > >> > in unicode letter ä exists in two versions - linux and windows use a
>> > >> > composite whereas macos prefers
>> > the decomposed form. Is there any way to make a semi-exact match th
Hi Gianni,
many thanks for your detailed response.
It turned out that my postgresql installation is too old for normalize,so I
will probably
a) use an external script to normalize existing data
b) change application code to normalize data before inserting or searching
Regards
Wolfgang
>> On 17
Hamann W wrote:
> in unicode letter ä exists in two versions - linux and windows use a
> composite whereas macos prefers
> the decomposed form. Is there any way to make a semi-exact match that
> accepts both variants?
Aside from normalizing the strings into the same normal form
before com
On Mon, 17 May 2021 15:45:00 +0200
Matthias Apitz wrote:
> There is only *one* codepoint for the German letter a Umlaut:
> LATIN SMALL LETTER A WITH DIAERESI U+00E4
True. On the other hand, the sequence:
* U+0061 LATIN SMALL LETTER A
* U+0308 COMBINING DIAERESIS
will render exactly the same gly
On 17 May 2021 13:27:40 -
haman...@t-online.de wrote:
> in unicode letter ä exists in two versions - linux and windows use a
> composite whereas macos prefers the decomposed form. Is there any
> way to make a semi-exact match that accepts both variants?
Actually, re-reading your request, you w
El día lunes, mayo 17, 2021 a las 01:27:40p. m. -, haman...@t-online.de
escribió:
> Hi,
>
> in unicode letter ä exists in two versions - linux and windows use a
> composite whereas macos prefers
> the decomposed form. Is there any way to make a semi-exact match that accepts
> both variants
On 17 May 2021 13:27:40 -
haman...@t-online.de wrote:
> in unicode letter ä exists in two versions - linux and windows use a
> composite whereas macos prefers the decomposed form. Is there any way
> to make a semi-exact match that accepts both variants?
You should probably normalise the string
Hi,
in unicode letter ä exists in two versions - linux and windows use a composite
whereas macos prefers
the decomposed form. Is there any way to make a semi-exact match that accepts
both variants?
This question is not about fulltext but about matching filenames across a
network - I wish to av