Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:25, Gian ha scritto: Hello all, I noticed one thing, if I write UCase $ (perché) I get PERCHé If I write Print.Ucase (perché) I get PERCHÉ It is correct? (perché is why or because in italian language) Regards Gianluigi

[Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Hello all, I noticed one thing, if I write UCase $ (perché) I get PERCHé If I write Print.Ucase (perché) I get PERCHÉ It is correct? (perché is why or because in italian language) Regards Gianluigi -- Dive into the World

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:32, Jussi Lahtinen ha scritto: You mean String.Ucase() ? The other function is for unicode and the other is only for ascii. Jussi On Wed, Jan 28, 2015 at 8:25 PM, Gian bago...@libero.it wrote: Hello all, I noticed one thing, if I write UCase $ (perché) I get PERCHé If I

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Lewis Balentine
é is not an ASCII character. Reference: http://gambaswiki.org/wiki/lang/ucase This function does not work with UTF-8 strings. UseString.UCase http://gambaswiki.org/wiki/comp/gb/string/ucaseinstead. Word = perché Print Word, UCase(Word), String.UCase(Word) Word = UCase(Word) Print Word

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:48, Lewis Balentine ha scritto: é is not an ASCII character. Reference: http://gambaswiki.org/wiki/lang/ucase This function does not work with UTF-8 strings. UseString.UCase http://gambaswiki.org/wiki/comp/gb/string/ucaseinstead. Word = perché Print Word, UCase(Word),

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Lewis Balentine
For a real challenge try 5 bit Baudot :-) -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel