No License
For a string STR, ISCAPLETTER(STR) returns a vector with 1 for capital letters, -1 for small letters and 0 otherwise.
ISLETTER2(STR,'all') returns 1 if all components of STR are letters.
ISLETTER2(STR,'any') returns 1 if any component of STR is a letter.
Ex:
str='Matlab R12.1';
is_isletter=isletter(str);
is_isletter2=isletter2(str);
is_isletter2_all=isletter2(str,'all');
is_isletter2_any=isletter2(str,'any');
is_isletter =
1 1 1 1 1 1 0 1 0 0 0 0
is_isletter2 =
1 -1 -1 -1 -1 -1 0 1 0 0 0 0
is_isletter2_all =
0
is_isletter2_any =
1
Cite As
Jerome Briot (2026). Isletter2 (https://uk.mathworks.com/matlabcentral/fileexchange/12930-isletter2), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0.0 | Complete modification from the review by Jos |
