how to create empty string arrays and then populate them through arrayName(indexNumber) syntax
192 次查看(过去 30 天)
显示 更早的评论
The following works for numbers:
B=[];
B(1)=10;
but how to make it work for strings such as
C=[''];
C(1)='hello';% does NOT work
0 个评论
回答(3 个)
Ronald Whiddon
2019-5-10
Declare an empty string array in this manner:
C=string.empty;
C(1)='hello';
C(2) = 'goodbye';
0 个评论
Dishant Arora
2014-2-20
c{1} = 'hello';
2 个评论
Stephen23
2019-5-10
编辑:Stephen23
2019-5-10
"This is a workaround, but it actually creates a cell array of strings. "
At the time this question was posed (and answered) the string class did not exist (it was only introduced in R2016b). Each element of a character array stores only one character, so (until the string class was introduced) the only way to store multiple characters using a scalar index (as the question poses) is to use a cell array. From that persepctive it is not a "workaround", it is the correct solution for versions of MATLAB before R2016b.
Nigel Nettheim
2023-6-9
You can initialise an empty string array with:
s = strings(0)
to which the response is:
s =
0×0 empty string array
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!