I have a function that translates HTML letter-codes into the real letters. E.g. Æ translates into Æ. For this I want to have a constant array with all the letters.
Like this (this code doesn't work):
Then I could get the letters:
Does anyone know how define a constant array?
Like this (this code doesn't work):
Code:
const HTMLCodes(32 to 126) as String = (" ", "!", """", "#", "$", "%", ... )
Then I could get the letters:
Code:
myLetter = HTMLCodes(34)
Does anyone know how define a constant array?