Azzera filtri
Azzera filtri

identify lowercase letters, uppercase letters, numbers and spaces

9 visualizzazioni (ultimi 30 giorni)
Hello everybody, I have this code and I would like that in the cases of the switch identify if the character of a given sentence is a lowercase letter, an uppercase or an space. Thank you very much!
sentence='Hello 22';
for ch=1:length(sentence)
switch sentence(ch)
case %if it is a lowercase letter
%blahblah
case %if it is an uppercase letter
%blahblah
case %if it is an space
%blahblah
end
end

Risposta accettata

Walter Roberson
Walter Roberson il 22 Ott 2020
Modificato: Walter Roberson il 23 Ott 2020
https://www.mathworks.com/help/matlab/ref/isstrprop.html is the only practical routine to use for this purpose. If you do not use it then chances become very high that your code will produce the wrong results for characters such as δ and ή and ř

Più risposte (1)

John D'Errico
John D'Errico il 22 Ott 2020
help ismember

Categorie

Scopri di più su Matrices and Arrays 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