strcmp function using wildcards
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sermet OGUTCU
el 24 de Nov. de 2021
Respondida: Stephen23
el 24 de Nov. de 2021
data= 336950 x 2 table
I try to find all rows in data containing "G[0-9][0-9]" such as G01, G09, G33 and etc. I tried the following code:
G_index=find(strcmp('G**',data(:,2)));
but ** cannot be recognized as wildcards.
0 comentarios
Respuesta aceptada
Stephen23
el 24 de Nov. de 2021
T = cell2table({'A','XXX';'B','G22';'C','G13';'D','G1234';'E','YYY';'F','G01'})
idx = ~cellfun(@isempty,regexp(T.Var2,'^G\d\d$','once'))
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!