How to check the numbers of characters of a string?

19 visualizzazioni (ultimi 30 giorni)
e.g I have a string, abcde. And I need a checker to check whether the string has 5 characters before executing a command.

Risposta accettata

Pedro Villena
Pedro Villena il 31 Ott 2012
Modificato: Pedro Villena il 31 Ott 2012
str = num2str([17;10],'%05i')
if length(str(1,:))==5,
%%%here is your command
end
or
str = num2str([17;10],'%05i')
if numel(str(1,:))==5,
%%%here is your command
end
  3 Commenti
Matt Fig
Matt Fig il 31 Ott 2012
Better to use NUMEL, for generality.
S = ['ertyu';'poiuy';'lkjhg';'nbvcx']
length(S)
numel(S)
Matt Fig
Matt Fig il 31 Ott 2012
I should have hit refresh, I guess ;-).

Accedi per commentare.

Più risposte (4)

Sean de Wolski
Sean de Wolski il 31 Ott 2012
Pedro's code with numel as the size check:
numel(str)==5

manoj saini
manoj saini il 31 Ott 2012
>>a='string'; >>n=length(a) so n will return length of a string

Ze Kai Ng
Ze Kai Ng il 31 Ott 2012
I converted my string into vector form and cannot count using length(str).

Ze Kai Ng
Ze Kai Ng il 31 Ott 2012
Thank you everybody! I figured it out. I need to char(vec(pos)) first to convert to string then I can compare with the above methods.

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by