detecting the existence of alphabetical elements
Mostra commenti meno recenti
Dear all, I would like to detect whether a string contains an alphabetical letter. A simple way of solving this problem is writing a function such as. But is there any better, more concise and faster way? Can one use, say, regular expressions and if so how?
thanks, Pat.
function flag=detect_alphabet(mystring)
referenceSet={'a','b','c','d',...,'z'};
flag=false;
for ii=1:length(mystring)
if ismember(mystring(ii),referenceSet)
flag=true;
break
end
end
Risposta accettata
Più risposte (4)
Oleg Komarov
il 1 Ott 2012
regexpr(str,'[a-zA-Z]')
str = 'adsf2342adsfwerreoj9f3f';
str2 = '23423';
flag = ~isempty(regexp(str,'[A-Za-z]'))
flag = ~isempty(regexp(str2,'[A-Za-z]'))
flag = any(ismember(mystring, 'a':'z'))
But now I'm lost in the incompatibilities of Matlab versions. Perhaps it must now be:
flag = any(ismember(mystring, char('a':'z')))
Alternatively:
flag = any(mystring >= 'a' & mystring <= 'z')
Or:
flag = any(isstrprop(mystring, 'lower'))
In all cases a loop is not required.
1 Commento
Matt Fig
il 1 Ott 2012
flag = any((str>='A' & str<='Z') | ((str>='a' & str<='z')))
Patrick Mboma
il 1 Ott 2012
0 voti
1 Commento
Image Analyst
il 1 Ott 2012
Well for what it's worth, I was going to answer isletter() until Matt beat me to it.
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!