How to compare strings in a cell
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jab
el 24 de Feb. de 2018
Editada: per isakson
el 24 de Feb. de 2018
I have a cell R={Transport.name}; which is 1*20 cell
I want to check my input string( from the user) will exist in R or not? Can anyone please help me? Thanks
0 comentarios
Respuesta aceptada
per isakson
el 24 de Feb. de 2018
Editada: per isakson
el 24 de Feb. de 2018
Try this
%%Sample data
str = char(randi(double(['A','Z']),[20,3] )); % Too smart
cac = mat2cell( str, ones(1,20),3 );
R = cac';
input_string = R{13};
%%Check if input_string exists in R
ismember( input_string, R )
returns
ans =
1
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!