Why is this string considered length one?
4 次查看(过去 30 天)
显示 更早的评论
Why is '15' a string of length one?
>> datestamp = '1991-6-15'
datestamp =
1991-6-15
>> a = textscan(datestamp,'%4s %2s %2s','Delimiter','-');
>> length(a{3})
ans =
1
>> a{3}
ans =
'15'
I'm trying to get the length of the string. Sometimes letters will be used, so converting to numbers is not an option.
Why is '15' a string of length one?
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!