convert alphabet to coresponding number by using ASCII

5 visualizzazioni (ultimi 30 giorni)
I have question, how to convert alphabet in lowercase to coresponding number by using ASCII. Such as a=1,b=2,c=3...

Risposta accettata

Ameer Hamza
Ameer Hamza il 25 Mag 2020
Like this
char2num = @(c) char(c)-96;
Example
>> char2num('a')
ans =
1
>> char2num('b')
ans =
2
>> char2num('z')
ans =
26

Più risposte (1)

Walter Roberson
Walter Roberson il 25 Mag 2020
UpperToLower = @(c) char(c-'A'+'a')
Or if you are daring,
UpperToLower = @(c) char(c+32);

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by