Using regexp to extract data

3 visualizaciones (últimos 30 días)
M Abdelreheem
M Abdelreheem el 19 de Feb. de 2022
Editada: DGM el 20 de Feb. de 2022
I am checking a code in which the following line is existed, as an example nNam= n111-y1 therefore I think this line reads all nNam which has this format (n1\d1$)|n1\d1-y,
nid = cellfun(@isempty,regexp(nNam,'(n1\d1$)|n1\d1-y'));
Now, I would like to read different nNam to be as an example nNam= n156, I searched for resources to get the corresponding regexp readible format but I did not find it. Could you help me with this?
Many thanks in advance
  2 comentarios
Akira Agata
Akira Agata el 20 de Feb. de 2022
Do you want to detect "n + 3 digits" ?
If so, the regular expression will be 'n\d{3}'.
M Abdelreheem
M Abdelreheem el 20 de Feb. de 2022
Editada: M Abdelreheem el 20 de Feb. de 2022
Thank you so much, it works well! but unfortunately, it detected all the lines started by a letter (n and m), is it applicable to detect points which start only with n1+2numbers+1 like (n1361) ?

Iniciar sesión para comentar.

Respuestas (1)

DGM
DGM el 20 de Feb. de 2022
Editada: DGM el 20 de Feb. de 2022
You haven't clearly stated what you want it to match and not match.
I'm going to assume that you want it to match "n1" followed by zero or more digits, with a trailing sequence consisting either of a single 1 or "1-y".
nNam = {'n111-y1','n156','n256','n1331'};
nid = cellfun('isempty',regexp(nNam,'n1\d*(1|1-y1)'))
nid = 1×4 logical array
0 1 1 0
If there is a restriction on the number of digits in the middle, you'll have to change the quantifier.

Categorías

Más información sobre Data Type Identification en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by