checking of existing an string in a cell arrays

743 visualizzazioni (ultimi 30 giorni)
There is a cell in name of 'CELL'. it is 1*12000 . its needed to check being and existing of a specified string in arrays of 'CELL'. so if the string doesn't exist do something
for example:
CELL={'a','b','c','d',...};
if 'a' not exists in CELL
do something
end

Risposta accettata

Lucas García
Lucas García il 21 Set 2011
if ~any(strcmp(CELL,'a'))
% Do Something
else
% Do Something else
end
  4 Commenti

Accedi per commentare.

Più risposte (0)

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by