regexp function that checks if a specific letter is in the end of a cell (last character)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ioannis Vourvachakis
el 10 de Nov. de 2021
Comentada: Ioannis Vourvachakis
el 10 de Nov. de 2021
This regexp function checks if there is a capital P in metForm folowed by any capital letter.
x= regexpi(metForm(i,1),'(?-i)P[A-Z]');
I want a similar regexp function that will check if the capital P is the last character in metForm (in the end and not followed by anything).
metForm is a cell array like this
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 10 de Nov. de 2021
Editada: Fangjun Jiang
el 10 de Nov. de 2021
Don't even need regexp()
metForm{i}(end)=='P'
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!