Hello
we have to implement a subset of utf-8 (DIN SPEC 91379). Problem is, some 'character' like C̨̆ is a combination of 3 codepoints (0043 0328 0306). If I had a string like
'Hello C̨̆, how are you'
and I make a substring (N'Hello C̨̆, how are you',1,7) I get
Hello C
with substring (N'Hello C̨̆, how are you',1,255) I get
Hello C̨̆, how are you
How could I avoid this problem
Kind regards
Andreas