How does one count the characters in an array?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do I obtain an arrays character count?
Eg. Value = 1111
I want the character count output to be 4
1 Commento
Walter Roberson
il 11 Apr 2016
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?
Risposta accettata
Più risposte (2)
Andrei Bobrov
il 11 Apr 2016
Modificato: Andrei Bobrov
il 11 Apr 2016
If your Value is numeric type, then:
out = floor(log10(Value)+1);
if Value is char type then:
out = numel(Value - '0');
1 Commento
Jay
il 11 Apr 2016
Modificato: Jay
il 11 Apr 2016
4 Commenti
Walter Roberson
il 13 Apr 2016
Edit boxes do not have a Value. Edit boxes have a String.
S = get(handles.edit1, 'String');
length(S)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!