changing isstrprop to ischar?

How can i write this statement with "ischar" instead of "isstrprop"
if isstrprop(reply, 'alpha')
E(misspelled_wordnum(i)) = {reply};
elseif str2num(reply) >= 1 && str2num(reply) <= suggestion_length
E(misspelled_wordnum(i)) = sorted_suggestion(str2num(reply), 1);
end
Help me please :)

답변 (1개)

Jan
Jan 2013년 2월 28일

0 개 추천

ischar tests, if the type of the input has the class 'char'. isstrprop(strin, 'alpha') checks, if the elements of the string are alphabetic characters. These are two different jobs and you cannot replace one by the other.

카테고리

도움말 센터File Exchange에서 App Building에 대해 자세히 알아보기

질문:

Kim
2013년 2월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by