isletter
Test whether each character is alphabetic.
Syntax
Section titled “Syntax”tf = isletter(A)Description
Section titled “Description”Returns a logical array the same size as A, with true at positions where the character is alphabetic (A–Z, a–z, plus locale-specific letters).
Example
Section titled “Example”isletter('Hi 5!') % [1 1 0 0 0]