How does one count the characters in an array?
显示 更早的评论
How do I obtain an arrays character count?
Eg. Value = 1111
I want the character count output to be 4
1 个评论
Walter Roberson
2016-4-11
Is that
Value = 1111
or is it
Value = '1111'
If it is numeric, then how do you want to process negative numbers, and how do you want to process numbers with fractional part, and how do you want to process numbers that would typically be expressed in scientific notation?
采纳的回答
更多回答(2 个)
Andrei Bobrov
2016-4-11
编辑:Andrei Bobrov
2016-4-11
If your Value is numeric type, then:
out = floor(log10(Value)+1);
if Value is char type then:
out = numel(Value - '0');
1 个评论
Walter Roberson
2016-4-11
This does not work for numeric Value < 1
4 个评论
Walter Roberson
2016-4-11
You have to have a handle to something . What is it a handle to ?
If your response is that it is a graphics handle, especially a uicontrol, then none of the defined graphics objects use Value to hold strings: in each case, Value is numeric or empty. Strings can be in String properties or in Data properties (uipanel) or in UserData properties, or in properties such as xticklabel.
Jay
2016-4-13
Walter Roberson
2016-4-13
Edit boxes do not have a Value. Edit boxes have a String.
S = get(handles.edit1, 'String');
length(S)
Jay
2016-4-17
类别
在 帮助中心 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!