Dear,
For example, string = '51234', the '5' is Japanese number, the '5' is 2 bytes in NON unicode system, so charlen(string) is 2. But, in unicode system, the '5' is 1 byte, so charlen(string) is 1.
Could you please tell me how to do in the new system, in order to get charlen(string) = 2.
Thanks!