find element egual to substring in array string
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
aldo
el 21 de Nov. de 2023
Respondida: Dyuman Joshi
el 21 de Nov. de 2023
c=["A1_asd";"A2_rrd";"A_dj";"B1_gre";"B2_rffe";"B3_rffe"]
%i want to catch string before letter_ and search member
%find all member egual to A in c;
%find all member egual to B in c;
result:
["A1_asd";"A2_rrd";"A_dj"]
["B1_gre";"B2_rffe";"B3_rffe"]
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 21 de Nov. de 2023
From what I understood of the given information -
%Input
c=["A1_asd";"A2_rrd";"A_dj";"B1_gre";"B2_rffe";"B3_rffe"]
%Output
a = c(startsWith(c, 'A'))
b = c(startsWith(c, 'B'))
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!