Determine which characters in a character vector are space characters. isspace returns
a logical vector that is the same size as chr.chr = 'Four score and seven years ago';
TF = isspace(chr)TF = 1x30 logical array0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0The isstrprop function can query characters for many different traits. isstrprop can
determine whether characters in a string or character vector are letters, alphanumeric
characters, decimal or hexadecimal digits, or punctuation characters.Determine which characters in a string are punctuation marks. isstrprop returns a
logical vector whose length is equal to the number of characters in str.str = "A horse! A horse! My kingdom for a horse!"str =
"A horse! A horse! My kingdom for a horse!"isstrprop(str,"punct")ans = 1x41 logical array0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1Determine which characters in the character vector chr are letters.isstrprop(chr,"alpha")ans = 1x30 logical array1 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1See Also
eq | ge | gt | isletter | isspace | isstrprop | le | lt | ne | sort | strcmp6 Characters and Strings