Main Content
strings
Create string array with no characters
Description
str = strings
returns a string with no characters. For more information
on string arrays, see string
.
You also can use double quotes. For example, str = ""
creates a string
scalar that contains no characters.
str = strings(
returns an
n
)n
-by-n
string array. Each element is a
string with no characters.
str = strings(
returns a
sz1,...,szN
)sz1
-by-...-by-szN
string array, where
sz1,...,szN
indicate the size of each dimension. For example,
strings(2,3)
returns a 2-by-3 string array where each element
is ""
.
Examples
Input Arguments
Extended Capabilities
Version History
Introduced in R2016b