Hello,
I've tested the UCASE and LCASE functions with the german special lower characters ,,, and the upper characters ,, with the little Kix
code:
$TextK = "abcdefghijklmnopqrstuvwxyz"
$TextG = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"CLS
BREAK ON
? $TextK
? UCASE($TextK)
? $TextG
? LCASE($TextG)
?
and got as result the following lines:
code:
abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
The second line is only incorrect in . For there is no upper character.
Also the fourth line is incorrect in .
My only question is: Is it a bug or a NON-FEATURE for non-english languages. If it is last I think it will be a good idea to write it into the documentation.
Whats about other languages than german that have special characters?
------------------
Jens Kalski
eMail: jens@kalski.de
[This message has been edited by JensKalski (edited 13 May 2001).]