Unicode character increment
-
Hi all, As with ascii character we can increment alphabet by increment ascii value of it (Like ch='H' and ch = ch + 1 gives me ch='I'). IS it pobbiel to do the same for Unicode character? I wan to increment Unicode character in VB.NET. Thanks in advance Priyank
-
Hi all, As with ascii character we can increment alphabet by increment ascii value of it (Like ch='H' and ch = ch + 1 gives me ch='I'). IS it pobbiel to do the same for Unicode character? I wan to increment Unicode character in VB.NET. Thanks in advance Priyank
As both the letters found in the alphabet and the individual order of the characters is not a universal constant you can't universily say you can do this in Unicode nor ASCII. If the task is more specific to convert the characters a-z as typically defined in a US/UK alphabet, then yes - you can do it in both Unicode and ASCII. The first 127 character points in Unicode match the 127 characters of ASCII.