Find cell containing part of a string.

13 visualizaciones (últimos 30 días)
sia ben
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).

Respuesta aceptada

Image Analyst
Image Analyst el 30 de Jul. de 2018
Try contains():
A = {'A0_V2'; 'A0_V1'; 'B2_V4'}
rowsWithString = contains(A, 'A0')

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by