octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Handle encoding of Octave strings


From: Nicholas Jankowski
Subject: Re: Handle encoding of Octave strings
Date: Wed, 16 May 2018 17:46:09 -0400

On Wed, May 16, 2018 at 5:24 PM, John W. Eaton <address@hidden> wrote:
> On 05/16/2018 04:10 PM, mmuetzel wrote:
>>
> What does Matlab do?  If your choice is different, I am sure that we will
> see bug reports about it.

Matlab 2017b does not have an islower or isupper implementation.

I do get:

>> lower ('ä')
ans =
    'ä'
>> upper ('ä')
ans =
    'Ä'

on windows it seems I'm unable to copy paste a ä, which seems to be
char(228), or 'Ä' which is char(196). Octave gives me:

>> islower(char(228))
ans = 0
>> isupper(char(228))
ans = 0
>> upper(char(228))
ans =
>> lower(char(228))
ans =

>> upper(char(228)) - lower(char(228))
ans = 0

not sure if any of that is meaningful.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]