Hi,
Some of my data has Serbian names containing ć which I need to convert to c.
The Hex UTF-8 bytes ( double byte code) is C4 8B, and the decimal is 267. Now I was using C48B$ = Chr$(267) and looking for C487$ in the field.
.... but Chr$ only goes up to 255 ... how can I get around this ?
The code I am using is ... If X$ = C48B$ then X$ = "c"
So long as CHR$ is < 256 then everything is ok but when CHR$ > 255 I get a function error meaning I cannot have CHR$ > 255.
Thanks,
Mike