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

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?

댓글을 달려면 로그인하십시오.

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 4월 11일

0 개 추천

value='1111'
out=numel(value)

추가 답변 (2개)

Andrei Bobrov
Andrei Bobrov 2016년 4월 11일
편집: Andrei Bobrov 2016년 4월 11일

0 개 추천

If your Value is numeric type, then:
out = floor(log10(Value)+1);
if Value is char type then:
out = numel(Value - '0');
Jay
Jay 2016년 4월 11일
편집: Jay 2016년 4월 11일

0 개 추천

That does not work.
The characters are not explicitly defined as elements in an array, but rather string values in a handle.
elCount = str2num('Value') = []

댓글 수: 4

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
Jay 2016년 4월 13일
The handle is to an edit box which I will use for a date output (thus Value > 0).
The date will not necessarily be of the current date but can be past, present or future (used in astronomic tables).
The structure of the input is to be DDMMYYYY.
I have written if statements that will throw an error if the inputted value is alphabetical.
Once I have a way to reference and further analyse the number of characters, I plan to have other (respective) errors shown in the listbox relating to the where the user went wrong with their editbox input.
I also plan for the values in the editbox to be portioned in the output to list:
'On the first two numbers day' 'of the second two numbers month' 'of the last 4 numbers year'
Edit boxes do not have a Value. Edit boxes have a String.
S = get(handles.edit1, 'String');
length(S)
Jay
Jay 2016년 4월 17일
Thankyou Walter.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Dates and Time에 대해 자세히 알아보기

질문:

Jay
2016년 4월 11일

댓글:

Jay
2016년 4월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by