Isletter2

Enhancement of the built-in function ISLETTER
822 download
Aggiornato 9 nov 2006

Nessuna licenza

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

Cita come

Jerome Briot (2024). Isletter2 (https://www.mathworks.com/matlabcentral/fileexchange/12930-isletter2), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R12.1
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su File Name Construction in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Complete modification from the review by Jos