String Support API

Convert string arrays to character arrays or cell arrays of character vectors.
189.0 次下载
更新时间 2018/11/6

查看许可证

A common way to add string support to a function that already accepts character arrays as inputs is to convert input string arrays to character vectors or cell arrays of character vectors. The convertStringsToChars and convertContainedStringsToChars functions convert string arrays to character vectors or cell arrays of character vectors, while leaving other input arguments unaltered.

The convertStringsToChars function was released in R2017a, and convertContainedStringsToChars was released in R2018b. This implementation of convertStringsToChars and convertContainedStringsToChars facilitates writing functions that work across all versions of MATLAB. This includes versions that predate the release of the string data type in R2016b.

Example Usage:

a = convertStringsToChars("Luggage combination")

a =
'Luggage combination'

a = convertContainedStringsToChars({'matryoshka'; ...
4; "Russian nesting doll"; ...
["little", "matron"]})

a =

4x1 cell array

{'matryoshka' }
{[ 4]}
{'Russian nesting doll'}
{1x2 cell }

For more information about updating your code to accept strings, see https://www.mathworks.com/help/matlab/matlab_prog/update-your-code-to-accept-strings.html

引用格式

MathWorks Programming Aids Team (2024). String Support API (https://www.mathworks.com/matlabcentral/fileexchange/69147-string-support-api), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2018b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Characters and Strings 的更多信息
标签 添加标签
致谢

启发作品: strpad

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0