strncmp comparing two segments of the same string
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Shubhrajit Bhattacharjee
el 5 de Mzo. de 2020
Respondida: Image Analyst
el 5 de Mzo. de 2020
I have the following 2*1 cell array -
aa =
{'L['string',1]'}
{'L['string',2']}
I would like to do strncmp using 'L[' and ',1' characters so that the first cell result will show 1 and the second will show 0. I would appreciate any direction on this.
0 comentarios
Respuesta aceptada
Image Analyst
el 5 de Mzo. de 2020
Try contains(aa, 'L[') and contains(aa, '1'). Attach your aa in a .mat file if you need more help.
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.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!