convert alphabet to coresponding number by using ASCII
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Maria
am 25 Mai 2020
Beantwortet: Walter Roberson
am 25 Mai 2020
I have question, how to convert alphabet in lowercase to coresponding number by using ASCII. Such as a=1,b=2,c=3...
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 25 Mai 2020
Like this
char2num = @(c) char(c)-96;
Example
>> char2num('a')
ans =
1
>> char2num('b')
ans =
2
>> char2num('z')
ans =
26
0 Kommentare
Weitere Antworten (1)
Walter Roberson
am 25 Mai 2020
UpperToLower = @(c) char(c-'A'+'a')
Or if you are daring,
UpperToLower = @(c) char(c+32);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!