Find cell containing part of a string.
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sia ben
el 30 de Jul. de 2018
Respondida: Image Analyst
el 30 de Jul. de 2018
I have a cell "A" of strings like {'A0_V2'; 'A0_V1'; 'B2_V4';...}. I want to find which numbers of A contains 'A0'. The answer can be ans = (1, 2).
0 comentarios
Respuesta aceptada
Image Analyst
el 30 de Jul. de 2018
Try contains():
A = {'A0_V2'; 'A0_V1'; 'B2_V4'}
rowsWithString = contains(A, 'A0')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!