regexp function that checks if a specific letter is in the end of a cell (last character)

5 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 10 Nov. 2021
Bearbeitet: Fangjun Jiang am 10 Nov. 2021
Don't even need regexp()
metForm{i}(end)=='P'

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by