isstring - Determine if input is string array - MATLAB (original) (raw)
Main Content
Determine if input is string array
Syntax
Description
tf = isstring([A](#bu6eyse-A))
returns 1
(true
) if A
is a string array. Otherwise, it returns 0
(false
).
Examples
Create different arrays, and then determine if they are string arrays.
Test a character vector.
Character vectors are not strings, so isstring
returns 0
.
Test a string array.
str = ["Smith","Chung","Morales"; ... "Sanchez","Peterson","Adams"]
str = 2×3 string "Smith" "Chung" "Morales" "Sanchez" "Peterson" "Adams"
str
is a string array, so isstring
returns 1
.
Input Arguments
Input array, specified as a scalar, vector, matrix, or multidimensional array. A
can be any data type.
Extended Capabilities
Version History
Introduced in R2016b